Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
eb6a3a4e
Commit
eb6a3a4e
authored
Feb 14, 2011
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua telnet: support --telnet-host "*console" syntax
parent
553bc045
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
modules/misc/lua/intf.c
modules/misc/lua/intf.c
+21
-12
No files found.
modules/misc/lua/intf.c
View file @
eb6a3a4e
...
...
@@ -262,29 +262,38 @@ int Open_LuaIntf( vlc_object_t *p_this )
else
if
(
!
strcmp
(
psz_name
,
"telnet"
)
)
{
char
*
psz_telnet_host
=
var_CreateGetString
(
p_intf
,
"telnet-host"
);
vlc_url_t
url
;
vlc_UrlParse
(
&
url
,
psz_telnet_host
,
0
);
int
i_telnet_port
=
var_CreateGetInteger
(
p_intf
,
"telnet-port"
);
if
(
url
.
i_port
!=
0
)
if
(
!
strcmp
(
psz_telnet_host
,
"*console"
)
)
;
else
{
if
(
i_telnet_port
==
TELNETPORT_DEFAULT
)
i_telnet_port
=
url
.
i_port
;
else
if
(
url
.
i_port
!=
i_telnet_port
)
msg_Warn
(
p_intf
,
"ignoring port %d (using %d)"
,
url
.
i_port
,
i_telnet_port
);
vlc_url_t
url
;
vlc_UrlParse
(
&
url
,
psz_telnet_host
,
0
);
int
i_telnet_port
=
var_CreateGetInteger
(
p_intf
,
"telnet-port"
);
if
(
url
.
i_port
!=
0
)
{
if
(
i_telnet_port
==
TELNETPORT_DEFAULT
)
i_telnet_port
=
url
.
i_port
;
else
if
(
url
.
i_port
!=
i_telnet_port
)
msg_Warn
(
p_intf
,
"ignoring port %d (using %d)"
,
url
.
i_port
,
i_telnet_port
);
}
char
*
psz_esc_host
=
config_StringEscape
(
url
.
psz_host
);
free
(
psz_telnet_host
);
vlc_UrlClean
(
&
url
);
asprintf
(
&
psz_telnet_host
,
"%s:%d"
,
psz_esc_host
?
psz_esc_host
:
""
,
i_telnet_port
);
free
(
psz_esc_host
);
}
char
*
psz_telnet_passwd
=
var_CreateGetString
(
p_intf
,
"telnet-password"
);
char
*
psz_esc_host
=
config_StringEscape
(
url
.
psz_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_por
t
,
psz_esc_passwd
);
asprintf
(
&
psz_config
,
"telnet={host='%s
',password='%s'}"
,
psz_telnet_hos
t
,
psz_esc_passwd
);
free
(
psz_esc_host
);
free
(
psz_esc_passwd
);
free
(
psz_telnet_passwd
);
free
(
psz_telnet_host
);
vlc_UrlClean
(
&
url
);
}
else
if
(
!
strcmp
(
psz_name
,
"rc"
)
)
{
...
...
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