Eliminated all destructor hooks. The operating system can clean this up for us bette...
[citadel.git] / citadel / serv_extensions.h
1
2 #ifndef SERV_EXTENSIONS_H
3 #define SERV_EXTENSIONS_H
4
5 #include "server.h"
6
7 /*
8  * ServiceFunctionHook extensions are used for hooks which implement various
9  * protocols (either on TCP or on unix domain sockets) directly in the Citadel server.
10  */
11 typedef struct ServiceFunctionHook ServiceFunctionHook;
12 struct ServiceFunctionHook {
13         ServiceFunctionHook *next;
14         int tcp_port;
15         char *sockpath;
16         void (*h_greeting_function) (void) ;
17         void (*h_command_function) (void) ;
18         void (*h_async_function) (void) ;
19         int msock;
20         const char* ServiceName; /* this is just for debugging and logging purposes. */
21 };
22 extern ServiceFunctionHook *ServiceHookTable;
23
24 typedef struct CleanupFunctionHook CleanupFunctionHook;
25 struct CleanupFunctionHook {
26         CleanupFunctionHook *next;
27         void (*h_function_pointer) (void);
28 };
29 extern CleanupFunctionHook *CleanupHookTable;
30
31 void initialize_server_extensions(void);
32 int DLoader_Exec_Cmd(char *cmdbuf);
33 char *Dynamic_Module_Init(void);
34
35 void PerformSessionHooks(int EventType);
36
37 void PerformUserHooks(struct ctdluser *usbuf, int EventType);
38
39 int PerformXmsgHooks(char *, char *, char *, char *);
40
41 int PerformMessageHooks(struct CtdlMessage *, recptypes *recps, int EventType);
42
43 int PerformRoomHooks(struct ctdlroom *);
44
45 void PerformDeleteHooks(char *, long);
46
47
48
49
50
51 int PerformFixedOutputHooks(char *, char *, int);
52
53 void netcfg_keyname(char *keybuf, long roomnum);
54
55 #endif /* SERV_EXTENSIONS_H */