Commit b196e281 authored by Christophe Massiot's avatar Christophe Massiot

Disabled the server argument in udpstream: because it confuses users and is

not of any practical use.
parent 5c07e45d
......@@ -2,7 +2,7 @@
* udp.c: raw UDP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: udp.c,v 1.6 2002/03/27 22:15:40 massiot Exp $
* $Id: udp.c,v 1.7 2002/03/29 00:14:19 massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
......@@ -232,6 +232,19 @@ static int UDPOpen( input_thread_t * p_input )
p_input->stream.i_method = INPUT_METHOD_NETWORK;
vlc_mutex_unlock( &p_input->stream.stream_lock );
if( *psz_server_addr || i_server_port )
{
intf_ErrMsg("input warning: this UDP syntax is deprecated ; the server argument will be");
intf_ErrMsg("ignored (%s:%d). If you wanted to enter a multicast address",
psz_server_addr, i_server_port);
intf_ErrMsg("or local port, type : %s:@%s:%d",
*p_input->psz_access ? p_input->psz_access : "udp",
psz_server_addr, i_server_port );
i_server_port = 0;
psz_server_addr = "";
}
intf_WarnMsg( 2, "input: opening server=%s:%d local=%s:%d",
psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
......
......@@ -4,7 +4,7 @@
* and spawn threads.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: main.c,v 1.172 2002/03/28 21:21:51 massiot Exp $
* $Id: main.c,v 1.173 2002/03/29 00:14:19 massiot Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
......@@ -936,8 +936,7 @@ static void Usage( const char *psz_module_name )
"\n \tDVD device"
"\n [vcd:][device][@[title][,[chapter]]"
"\n \tVCD device"
"\n udpstream:[<server>[:<server port>]][@[<bind address>]"
"[:<bind port>]]"
"\n udpstream:[@[<bind address>][:<bind port>]]"
"\n \tUDP stream sent by VLS"
"\n vlc:loop \tLoop execution of the "
"playlist"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment