Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
ca3674c4
Commit
ca3674c4
authored
Nov 06, 2004
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Better settings description,
- Easier TLS module wrapper.
parent
c0bb3860
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
32 deletions
+10
-32
Makefile.am
Makefile.am
+1
-0
include/vlc_tls.h
include/vlc_tls.h
+4
-2
modules/control/http.c
modules/control/http.c
+5
-30
No files found.
Makefile.am
View file @
ca3674c4
...
...
@@ -361,6 +361,7 @@ SOURCES_libvlc_common = \
src/stream_output/sap.c
\
src/misc/charset.c
\
src/misc/httpd.c
\
src/misc/tls.c
\
src/misc/mtime.c
\
src/misc/block.c
\
src/misc/modules.c
\
...
...
include/vlc_tls.h
View file @
ca3674c4
...
...
@@ -68,7 +68,8 @@ struct tls_session_t
* Allocates a whole server's TLS credentials.
* Returns NULL on error.
*****************************************************************************/
# define tls_ServerCreate( a, b, c ) (((tls_t *)a)->pf_server_create (a, b, c))
# define __tls_ServerCreate( a, b, c ) (((tls_t *)a)->pf_server_create (a, b, c))
VLC_EXPORT
(
tls_server_t
*
,
tls_ServerCreate
,
(
vlc_object_t
*
,
const
char
*
,
const
char
*
)
);
/*****************************************************************************
* tls_ServerAddCA:
...
...
@@ -88,7 +89,8 @@ struct tls_session_t
# define tls_ServerAddCRL( a, b ) (((tls_server_t *)a)->pf_add_CRL (a, b))
# define tls_ServerDelete( a ) (((tls_server_t *)a)->pf_delete ( a ))
# define __tls_ServerDelete( a ) (((tls_server_t *)a)->pf_delete ( a ))
VLC_EXPORT
(
void
,
tls_ServerDelete
,
(
tls_server_t
*
)
);
# define tls_ServerSessionPrepare( a ) (((tls_server_t *)a)->pf_session_prepare (a))
...
...
modules/control/http.c
View file @
ca3674c4
...
...
@@ -79,13 +79,13 @@ static void Close( vlc_object_t * );
#define SRC_TEXT N_( "Source directory" )
#define SRC_LONGTEXT N_( "Source directory" )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "x509 PEM certificates path file" )
#define CERT_LONGTEXT N_( "
HTTP interface
x509 PEM certificates path file" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_LONGTEXT N_( "x509 PEM private key file" )
#define KEY_LONGTEXT N_( "
HTTP interface
x509 PEM private key file" )
#define CA_TEXT N_( "Root CA file" )
#define CA_LONGTEXT N_( "x509 PEM trusted root CA certificates file" )
#define CA_LONGTEXT N_( "
HTTP interface
x509 PEM trusted root CA certificates file" )
#define CRL_TEXT N_( "CRL file" )
#define CRL_LONGTEXT N_( "
Certificates revocation l
ist file" )
#define CRL_LONGTEXT N_( "
HTTP interace Certificates Revocation L
ist file" )
vlc_module_begin
();
set_description
(
_
(
"HTTP remote control interface"
)
);
...
...
@@ -190,7 +190,6 @@ struct intf_sys_t
playlist_t
*
p_playlist
;
input_thread_t
*
p_input
;
vlm_t
*
p_vlm
;
tls_t
*
p_tls
;
};
...
...
@@ -232,32 +231,16 @@ static int Open( vlc_object_t *p_this )
p_sys
->
p_input
=
NULL
;
p_sys
->
p_vlm
=
NULL
;
/* TODO: avoid possible code duplication in other modules */
psz_cert
=
config_GetPsz
(
p_intf
,
"http-intf-cert"
);
if
(
psz_cert
!=
NULL
)
{
const
char
*
psz_pem
;
p_sys
->
p_tls
=
vlc_object_create
(
p_this
,
VLC_OBJECT_TLS
);
vlc_object_attach
(
p_sys
->
p_tls
,
p_this
);
p_sys
->
p_tls
->
p_module
=
module_Need
(
p_sys
->
p_tls
,
"tls"
,
0
,
0
);
if
(
p_sys
->
p_tls
->
p_module
==
NULL
)
{
msg_Err
(
p_this
,
"cannot find TLS/SSL provider"
);
vlc_object_detach
(
p_sys
->
p_tls
);
vlc_object_destroy
(
p_sys
->
p_tls
);
p_sys
->
p_tls
=
NULL
;
return
VLC_EGENERIC
;
}
msg_Dbg
(
p_intf
,
"enablind TLS for HTTP interface (cert file: %s)"
,
psz_cert
);
psz_pem
=
config_GetPsz
(
p_intf
,
"http-intf-key"
);
if
(
psz_pem
==
NULL
)
psz_pem
=
psz_cert
;
p_tls
=
tls_ServerCreate
(
p_
sys
->
p_tl
s
,
psz_cert
,
psz_pem
);
p_tls
=
tls_ServerCreate
(
p_
thi
s
,
psz_cert
,
psz_pem
);
if
(
p_tls
==
NULL
)
{
msg_Err
(
p_intf
,
"TLS initialization error"
);
...
...
@@ -288,7 +271,6 @@ static int Open( vlc_object_t *p_this )
}
else
{
p_sys
->
p_tls
=
NULL
;
p_tls
=
NULL
;
if
(
i_port
<=
0
)
i_port
=
8080
;
...
...
@@ -415,13 +397,6 @@ void Close ( vlc_object_t *p_this )
free
(
p_sys
->
pp_files
);
}
httpd_HostDelete
(
p_sys
->
p_httpd_host
);
/* TODO: do this in the httpd code to avoid code duplication */
if
(
p_sys
->
p_tls
!=
NULL
)
{
module_Unneed
(
p_sys
->
p_tls
,
p_sys
->
p_tls
->
p_module
);
vlc_object_detach
(
p_sys
->
p_tls
);
vlc_object_destroy
(
p_sys
->
p_tls
);
}
free
(
p_sys
);
}
...
...
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