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

Support for creating TLS objects

parent 79eaff3c
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
#include "vlc_httpd.h" #include "vlc_httpd.h"
#include "vlc_vlm.h" #include "vlc_vlm.h"
#include "vlc_vod.h" #include "vlc_vod.h"
#include "vlc_tls.h"
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
...@@ -185,6 +186,10 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type ) ...@@ -185,6 +186,10 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
i_size = sizeof( vod_t ); i_size = sizeof( vod_t );
psz_type = "vod server"; psz_type = "vod server";
break; break;
case VLC_OBJECT_TLS:
i_size = sizeof( tls_t );
psz_type = "tls";
break;
case VLC_OBJECT_OPENGL: case VLC_OBJECT_OPENGL:
i_size = sizeof( vout_thread_t ); i_size = sizeof( vout_thread_t );
psz_type = "opengl provider"; psz_type = "opengl provider";
......
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