]> code.citadel.org Git - citadel.git/blob - citadel/serv_network.c
* Prepared infrastructure for the networker rewrite
[citadel.git] / citadel / serv_network.c
1 /*
2  * $Id$ 
3  *
4  * This module will eventually replace netproc and some of its utilities.
5  * Copyright (C) 2000 by Art Cancro and others.
6  * This code is released under the terms of the GNU General Public License.
7  *
8  */
9
10 #include "sysdep.h"
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <stdio.h>
14 #include <fcntl.h>
15 #include <signal.h>
16 #include <pwd.h>
17 #include <errno.h>
18 #include <sys/types.h>
19 #include <sys/time.h>
20 #include <sys/wait.h>
21 #include <string.h>
22 #include <limits.h>
23 #include "citadel.h"
24 #include "server.h"
25 #include <time.h>
26 #include "sysdep_decls.h"
27 #include "citserver.h"
28 #include "support.h"
29 #include "config.h"
30 #include "dynloader.h"
31 #include "room_ops.h"
32 #include "user_ops.h"
33 #include "policy.h"
34 #include "database.h"
35 #include "msgbase.h"
36 #include "tools.h"
37 #include "internet_addressing.h"
38 #include "serv_network.h"
39
40
41 void cmd_gnet(char *argbuf) {
42 }
43
44
45 void cmd_snet(char *argbuf) {
46 }
47
48
49 char *Dynamic_Module_Init(void)
50 {
51         CtdlRegisterProtoHook(cmd_gnet, "GNET", "Get network config");
52         CtdlRegisterProtoHook(cmd_snet, "SNET", "Get network config");
53         return "$Id$";
54 }