Merge branch 'master' of git.w00d5t0ck.info:wxmppd
This commit is contained in:
commit
ce1162c03e
15
modules/socket-tcpip.c
Normal file
15
modules/socket-tcpip.c
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#include "module.h"
|
||||||
|
|
||||||
|
int wxmppd_mod_socket_tcpip_load(funcptr *);
|
||||||
|
|
||||||
|
const wxmppd_module_data_t module_data = {
|
||||||
|
"socket-tcpip",
|
||||||
|
"Module to provide TCP/IP based sockets for interfaces",
|
||||||
|
&wxmppd_mod_socket_tcpip_load,
|
||||||
|
};
|
||||||
|
|
||||||
|
int wxmppd_mod_socket_tcpip_load(funcptr *global_functions)
|
||||||
|
{
|
||||||
|
/* Register socket type "tcpip" */
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user