Created placeholder for mod-socket-tcpip

This commit is contained in:
Gergely POLONKAI 2011-01-30 16:45:25 +01:00
parent 0ad269d1c3
commit b89d86763f
1 changed files with 15 additions and 0 deletions

15
modules/socket-tcpip.c Normal file
View 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;
}