Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
b196e281
Commit
b196e281
authored
Mar 29, 2002
by
Christophe Massiot
Browse files
Disabled the server argument in udpstream: because it confuses users and is
not of any practical use.
parent
5c07e45d
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/access/udp.c
View file @
b196e281
...
...
@@ -2,7 +2,7 @@
* udp.c: raw UDP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: udp.c,v 1.
6
2002/03/2
7 22:15:40
massiot Exp $
* $Id: udp.c,v 1.
7
2002/03/2
9 00:14:19
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -231,6 +231,19 @@ static int UDPOpen( input_thread_t * p_input )
p_input
->
stream
.
p_selected_area
->
i_tell
=
0
;
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
);
...
...
src/interface/main.c
View file @
b196e281
...
...
@@ -4,7 +4,7 @@
* and spawn threads.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: main.c,v 1.17
2
2002/03/2
8 21:21:51
massiot Exp $
* $Id: main.c,v 1.17
3
2002/03/2
9 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
\t
DVD device"
"
\n
[vcd:][device][@[title][,[chapter]]"
"
\n
\t
VCD device"
"
\n
udpstream:[<server>[:<server port>]][@[<bind address>]"
"[:<bind port>]]"
"
\n
udpstream:[@[<bind address>][:<bind port>]]"
"
\n
\t
UDP stream sent by VLS"
"
\n
vlc:loop
\t
Loop execution of the "
"playlist"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment