Mailing list header changes (fuck you Google)
[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 CtdlDestroySessionHooks(void);
36 void PerformSessionHooks(int EventType);
37
38 void CtdlDestroyUserHooks(void);
39 void PerformUserHooks(struct ctdluser *usbuf, int EventType);
40
41 int PerformXmsgHooks(char *, char *, char *, char *);
42 void CtdlDestroyXmsgHooks(void);
43
44 void CtdlDestroyMessageHook(void);
45 int PerformMessageHooks(struct CtdlMessage *, recptypes *recps, int EventType);
46
47 void CtdlDestroyRoomHooks(void);
48 int PerformRoomHooks(struct ctdlroom *);
49
50 void CtdlDestroyDeleteHooks(void);
51 void PerformDeleteHooks(char *, long);
52
53 void CtdlDestroyCleanupHooks(void);
54
55 void CtdlDestroyProtoHooks(void);
56
57 void CtdlDestroyServiceHook(void);
58
59 void CtdlDestroySearchHooks(void);
60
61 void CtdlDestroyFixedOutputHooks(void);
62 int PerformFixedOutputHooks(char *, char *, int);
63
64 void netcfg_keyname(char *keybuf, long roomnum);
65
66 #endif /* SERV_EXTENSIONS_H */