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

GnuTLS: use network category

parent 5192952f
...@@ -83,13 +83,13 @@ vlc_module_begin () ...@@ -83,13 +83,13 @@ vlc_module_begin ()
set_capability( "tls client", 1 ) set_capability( "tls client", 1 )
set_callbacks( OpenClient, CloseClient ) set_callbacks( OpenClient, CloseClient )
set_category( CAT_ADVANCED ) set_category( CAT_ADVANCED )
set_subcategory( SUBCAT_ADVANCED_MISC ) set_subcategory( SUBCAT_ADVANCED_NETWORK )
add_submodule () add_submodule ()
set_description( N_("GNU TLS server") ) set_description( N_("GNU TLS server") )
set_capability( "tls server", 1 ) set_capability( "tls server", 1 )
set_category( CAT_ADVANCED ) set_category( CAT_ADVANCED )
set_subcategory( SUBCAT_ADVANCED_MISC ) set_subcategory( SUBCAT_ADVANCED_NETWORK )
set_callbacks( OpenServer, CloseServer ) set_callbacks( OpenServer, CloseServer )
add_string ("gnutls-priorities", "NORMAL", PRIORITIES_TEXT, add_string ("gnutls-priorities", "NORMAL", PRIORITIES_TEXT,
......
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