Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
db35e690
Commit
db35e690
authored
Jun 17, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
luatelnet: the oldtelnet options are now working well with the luatelnet module.
parent
e600df62
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
27 deletions
+69
-27
modules/control/telnet.c
modules/control/telnet.c
+1
-1
modules/misc/lua/intf.c
modules/misc/lua/intf.c
+45
-25
modules/misc/lua/vlc.c
modules/misc/lua/vlc.c
+23
-1
No files found.
modules/control/telnet.c
View file @
db35e690
...
...
@@ -87,7 +87,7 @@ vlc_module_begin ()
set_shortname
(
"Telnet"
)
set_category
(
CAT_INTERFACE
)
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
)
add_string
(
"telnet-host"
,
""
,
NULL
,
TELNETHOST_TEXT
,
add_string
(
"telnet-host"
,
"
localhost
"
,
NULL
,
TELNETHOST_TEXT
,
TELNETHOST_LONGTEXT
,
true
)
add_integer
(
"telnet-port"
,
TELNETPORT_DEFAULT
,
NULL
,
TELNETPORT_TEXT
,
TELNETPORT_LONGTEXT
,
true
)
...
...
modules/misc/lua/intf.c
View file @
db35e690
...
...
@@ -214,45 +214,65 @@ int Open_LuaIntf( vlc_object_t *p_this )
/*
* Get the lua-config string.
* If the string is empty, try with the old http-* options and build the righr line
* If the string is empty, try with the old http-* or telnet-* options
* and build the right configuration line
*/
psz_config
=
var_CreateGetNonEmptyString
(
p_intf
,
"lua-config"
);
if
(
!
psz_config
&&
!
strcmp
(
psz_name
,
"http"
)
)
if
(
!
psz_config
)
{
char
*
psz_http_host
=
var_CreateGetNonEmptyString
(
p_intf
,
"http-host"
);
char
*
psz_http_src
=
var_CreateGetNonEmptyString
(
p_intf
,
"http-src"
);
bool
b_http_index
=
var_CreateGetBool
(
p_intf
,
"http-index"
);
if
(
psz_http_host
)
if
(
!
strcmp
(
psz_name
,
"http"
)
)
{
char
*
psz_esc
=
config_StringEscape
(
psz_http_host
);
asprintf
(
&
psz_config
,
"http={host='%s'"
,
psz_esc
);
free
(
psz_esc
);
free
(
psz_http_host
);
}
if
(
psz_http_src
)
{
char
*
psz_esc
=
config_StringEscape
(
psz_http_src
);
char
*
psz_http_host
=
var_CreateGetNonEmptyString
(
p_intf
,
"http-host"
);
char
*
psz_http_src
=
var_CreateGetNonEmptyString
(
p_intf
,
"http-src"
);
bool
b_http_index
=
var_CreateGetBool
(
p_intf
,
"http-index"
);
if
(
psz_http_host
)
{
char
*
psz_esc
=
config_StringEscape
(
psz_http_host
);
asprintf
(
&
psz_config
,
"http={host='%s'"
,
psz_esc
);
free
(
psz_esc
);
free
(
psz_http_host
);
}
if
(
psz_http_src
)
{
char
*
psz_esc
=
config_StringEscape
(
psz_http_src
);
if
(
psz_config
)
{
char
*
psz_tmp
;
asprintf
(
&
psz_tmp
,
"%s,dir='%s'"
,
psz_config
,
psz_esc
);
free
(
psz_config
);
psz_config
=
psz_tmp
;
}
else
asprintf
(
&
psz_config
,
"http={dir='%s'"
,
psz_esc
);
free
(
psz_esc
);
free
(
psz_http_src
);
}
if
(
psz_config
)
{
char
*
psz_tmp
;
asprintf
(
&
psz_tmp
,
"%s,
dir='%s'"
,
psz_config
,
psz_esc
);
asprintf
(
&
psz_tmp
,
"%s,
no_index=%s}"
,
psz_config
,
b_http_index
?
"true"
:
"false"
);
free
(
psz_config
);
psz_config
=
psz_tmp
;
}
else
asprintf
(
&
psz_config
,
"http={dir='%s'"
,
psz_esc
);
free
(
psz_esc
);
free
(
psz_http_src
);
asprintf
(
&
psz_config
,
"http={no_index=%s}"
,
b_http_index
?
"true"
:
"false"
);
}
if
(
psz_config
)
else
if
(
!
strcmp
(
psz_name
,
"telnet"
)
)
{
char
*
psz_tmp
;
asprintf
(
&
psz_tmp
,
"%s,no_index=%s}"
,
psz_config
,
b_http_index
?
"true"
:
"false"
);
free
(
psz_config
);
psz_config
=
psz_tmp
;
char
*
psz_telnet_host
=
var_CreateGetString
(
p_intf
,
"telnet-host"
);
int
i_telnet_port
=
var_CreateGetInteger
(
p_intf
,
"telnet-port"
);
char
*
psz_telnet_passwd
=
var_CreateGetString
(
p_intf
,
"telnet-password"
);
char
*
psz_esc_host
=
config_StringEscape
(
psz_telnet_host
);
char
*
psz_esc_passwd
=
config_StringEscape
(
psz_telnet_passwd
);
asprintf
(
&
psz_config
,
"telnet={host='%s:%d',password='%s'}"
,
psz_esc_host
?
psz_esc_host
:
""
,
i_telnet_port
,
psz_esc_passwd
);
free
(
psz_esc_host
);
free
(
psz_esc_passwd
);
free
(
psz_telnet_passwd
);
free
(
psz_telnet_host
);
}
else
asprintf
(
&
psz_config
,
"http={no_index=%s}"
,
b_http_index
?
"true"
:
"false"
);
}
if
(
psz_config
)
...
...
modules/misc/lua/vlc.c
View file @
db35e690
...
...
@@ -69,6 +69,20 @@
#define INDEX_TEXT N_( "Directory index" )
#define INDEX_LONGTEXT N_( "Allow to build directory index" )
#define TELNETHOST_TEXT N_( "Host" )
#define TELNETHOST_LONGTEXT N_( "This is the host on which the " \
"interface will listen. It defaults to all network interfaces (0.0.0.0)." \
" If you want this interface to be available only on the local " \
"machine, enter \"127.0.0.1\"." )
#define TELNETPORT_TEXT N_( "Port" )
#define TELNETPORT_LONGTEXT N_( "This is the TCP port on which this " \
"interface will listen. It defaults to 4212." )
#define TELNETPORT_DEFAULT 4212
#define TELNETPWD_TEXT N_( "Password" )
#define TELNETPWD_LONGTEXT N_( "A single administration password is used " \
"to protect this interface. The default value is \"admin\"." )
#define TELNETPWD_DEFAULT "admin"
static
int
vlc_sd_probe_Open
(
vlc_object_t
*
);
vlc_module_begin
()
...
...
@@ -88,10 +102,18 @@ vlc_module_begin ()
INTF_TEXT
,
INTF_LONGTEXT
,
false
)
add_string
(
"lua-config"
,
""
,
NULL
,
CONFIG_TEXT
,
CONFIG_LONGTEXT
,
false
)
set_section
(
N_
(
"Lua HTTP"
),
0
)
set_section
(
N_
(
"Lua HTTP"
),
0
)
add_string
(
"http-host"
,
NULL
,
NULL
,
HOST_TEXT
,
HOST_LONGTEXT
,
true
)
add_string
(
"http-src"
,
NULL
,
NULL
,
SRC_TEXT
,
SRC_LONGTEXT
,
true
)
add_bool
(
"http-index"
,
false
,
NULL
,
INDEX_TEXT
,
INDEX_LONGTEXT
,
true
)
set_section
(
N_
(
"Lua Telnet"
),
0
)
add_string
(
"telnet-host"
,
"localhost"
,
NULL
,
TELNETHOST_TEXT
,
TELNETHOST_LONGTEXT
,
true
)
add_integer
(
"telnet-port"
,
TELNETPORT_DEFAULT
,
NULL
,
TELNETPORT_TEXT
,
TELNETPORT_LONGTEXT
,
true
)
add_password
(
"telnet-password"
,
TELNETPWD_DEFAULT
,
NULL
,
TELNETPWD_TEXT
,
TELNETPWD_LONGTEXT
,
true
)
set_callbacks
(
Open_LuaIntf
,
Close_LuaIntf
)
add_submodule
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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