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
b2025254
Commit
b2025254
authored
Nov 04, 2004
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include TLS/SSL API
parent
33173810
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
Makefile.am
Makefile.am
+2
-0
include/vlc_common.h
include/vlc_common.h
+2
-0
src/misc/modules.c
src/misc/modules.c
+1
-0
src/misc/tls.c
src/misc/tls.c
+0
-1
No files found.
Makefile.am
View file @
b2025254
...
...
@@ -101,6 +101,7 @@ HEADERS_include = \
include/vlc_filter.h
\
include/vlc_help.h
\
include/vlc_httpd.h
\
include/vlc_tls.h
\
include/vlc_input.h
\
include/vlc_interface.h
\
include/vlc_keys.h
\
...
...
@@ -360,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_common.h
View file @
b2025254
...
...
@@ -336,6 +336,8 @@ typedef struct data_buffer_t data_buffer_t;
typedef
struct
stream_ctrl_t
stream_ctrl_t
;
typedef
struct
pes_packet_t
pes_packet_t
;
typedef
struct
network_socket_t
network_socket_t
;
typedef
struct
tls_server_t
tls_server_t
;
typedef
struct
tls_session_t
tls_session_t
;
typedef
struct
iso639_lang_t
iso639_lang_t
;
/* block */
...
...
src/misc/modules.c
View file @
b2025254
...
...
@@ -99,6 +99,7 @@
#include "stream_output.h"
#include "osd.h"
#include "vlc_httpd.h"
#include "vlc_tls.h"
#include "iso_lang.h"
#include "charset.h"
...
...
src/misc/tls.c
View file @
b2025254
...
...
@@ -28,7 +28,6 @@
#include "vlc_tls.h"
#define HAVE_GNUTLS 1
/*
* TODO:
* - libgcrypt thread-safety !!!
...
...
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