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
57d2f991
Commit
57d2f991
authored
Mar 22, 2006
by
zorglub
Browse files
Strings review of telnet.c (Refs:#438)
parent
01150186
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/control/telnet.c
View file @
57d2f991
...
...
@@ -69,13 +69,18 @@
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
#define TELNETHOST_TEXT N_( "Telnet Interface host" )
#define TELNETHOST_LONGTEXT N_( "Default to listen on all network interfaces" )
#define TELNETPORT_TEXT N_( "Telnet Interface port" )
#define TELNETPORT_LONGTEXT N_( "Default to 4212" )
#define TELNETHOST_TEXT N_( "Telnet interface listen host" )
#define TELNETHOST_LONGTEXT N_( "This is the host on which the telnet " \
"interface will listen. It defaults to all network interfaces (0.0.0.0)." \
" I you want the telnet interface to be available only on the local " \
"machine, enter 127.0.0.1" )
#define TELNETPORT_TEXT N_( "Telnet interface port" )
#define TELNETPORT_LONGTEXT N_( "This is the TCP port on which the telnet " \
"interface will listen. It defaults to 4212" )
#define TELNETPORT_DEFAULT 4212
#define TELNETPWD_TEXT N_( "Telnet Interface password" )
#define TELNETPWD_LONGTEXT N_( "Default to admin" )
#define TELNETPWD_TEXT N_( "Telnet interface password" )
#define TELNETPWD_LONGTEXT N_( "The telnet interface uses a single " \
"administration password. The default value is \"admin\"." )
#define TELNETPWD_DEFAULT "admin"
vlc_module_begin
();
...
...
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