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
884f8d97
Commit
884f8d97
authored
Dec 30, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DVB: config_Get -> var_Inherit
parent
667fa456
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/access/dvb/http.c
modules/access/dvb/http.c
+4
-4
No files found.
modules/access/dvb/http.c
View file @
884f8d97
...
...
@@ -113,14 +113,14 @@ int HTTPOpen( access_t *p_access )
return
VLC_SUCCESS
;
/* determine SSL configuration */
psz_cert
=
var_
GetNonEmpty
String
(
p_access
,
"dvb-http-intf-cert"
);
psz_cert
=
var_
Inherit
String
(
p_access
,
"dvb-http-intf-cert"
);
if
(
psz_cert
!=
NULL
)
{
msg_Dbg
(
p_access
,
"enabling TLS for HTTP interface (cert file: %s)"
,
psz_cert
);
psz_key
=
config_GetPsz
(
p_access
,
"dvb-http-intf-key"
);
psz_ca
=
config_GetPsz
(
p_access
,
"dvb-http-intf-ca"
);
psz_crl
=
config_GetPsz
(
p_access
,
"dvb-http-intf-crl"
);
psz_key
=
var_InheritString
(
p_access
,
"dvb-http-intf-key"
);
psz_ca
=
var_InheritString
(
p_access
,
"dvb-http-intf-ca"
);
psz_crl
=
var_InheritString
(
p_access
,
"dvb-http-intf-crl"
);
if
(
i_port
<=
0
)
i_port
=
8443
;
...
...
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