You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
315 B
C
17 lines
315 B
C
#include "module.h"
|
|
|
|
int wxmppd_mod_layer_gnutls_load(funcptr *);
|
|
|
|
const wxmppd_module_data_t module_data = {
|
|
"layer-gnutls",
|
|
"GnuTLS interface extension",
|
|
(funcptr)wxmppd_mod_layer_gnutls_load,
|
|
};
|
|
|
|
int
|
|
wxmppd_mod_layer_gnutls_load(funcptr *global_functions)
|
|
{
|
|
/* Register interface extension "layer-tls" */
|
|
}
|
|
|