1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#ifndef SERV_EXTENSIONS_H
#define SERV_EXTENSIONS_H
#include "server.h"
/*
* ServiceFunctionHook extensions are used for hooks which implement various
* protocols (either on TCP or on unix domain sockets) directly in the Citadel server.
*/
typedef struct ServiceFunctionHook ServiceFunctionHook;
struct ServiceFunctionHook {
ServiceFunctionHook *next;
int tcp_port;
char *sockpath;
void (*h_greeting_function) (void) ;
void (*h_command_function) (void) ;
void (*h_async_function) (void) ;
int msock;
const char* ServiceName; /* this is just for debugging and logging purposes. */
};
extern ServiceFunctionHook *ServiceHookTable;
typedef struct CleanupFunctionHook CleanupFunctionHook;
struct CleanupFunctionHook {
CleanupFunctionHook *next;
void (*h_function_pointer) (void);
};
extern CleanupFunctionHook *CleanupHookTable;
void initialize_server_extensions(void);
int DLoader_Exec_Cmd(char *cmdbuf);
char *Dynamic_Module_Init(void);
void CtdlDestroySessionHooks(void);
void PerformSessionHooks(int EventType);
void CtdlDestroyUserHooks(void);
void PerformUserHooks(struct ctdluser *usbuf, int EventType);
int PerformXmsgHooks(char *, char *, char *, char *);
void CtdlDestroyXmsgHooks(void);
void CtdlDestroyMessageHook(void);
int PerformMessageHooks(struct CtdlMessage *, recptypes *recps, int EventType);
void CtdlDestroyNetprocHooks(void);
int PerformNetprocHooks(struct CtdlMessage *, char *);
void CtdlDestroyRoomHooks(void);
int PerformRoomHooks(struct ctdlroom *);
void CtdlDestroyDeleteHooks(void);
void PerformDeleteHooks(char *, long);
void CtdlDestroyCleanupHooks(void);
void CtdlDestroyProtoHooks(void);
void CtdlDestroyServiceHook(void);
void CtdlDestroySearchHooks(void);
void CtdlDestroyFixedOutputHooks(void);
int PerformFixedOutputHooks(char *, char *, int);
void netcfg_keyname(char *keybuf, long roomnum);
#endif /* SERV_EXTENSIONS_H */
|