Commit b2025254 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Include TLS/SSL API

parent 33173810
......@@ -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 \
......
......@@ -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 */
......
......@@ -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"
......
......@@ -28,7 +28,6 @@
#include "vlc_tls.h"
#define HAVE_GNUTLS 1
/*
* TODO:
* - libgcrypt thread-safety !!!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment