From b89d86763ffd578b2f13961f46144babc1fa64b8 Mon Sep 17 00:00:00 2001 From: Gergely POLONKAI Date: Sun, 30 Jan 2011 16:45:25 +0100 Subject: [PATCH] Created placeholder for mod-socket-tcpip --- modules/socket-tcpip.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/socket-tcpip.c diff --git a/modules/socket-tcpip.c b/modules/socket-tcpip.c new file mode 100644 index 0000000..f89eea1 --- /dev/null +++ b/modules/socket-tcpip.c @@ -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; +}