]> jfr.im git - solanum.git/blob - include/hook.h
Add client_quit hook
[solanum.git] / include / hook.h
1 /*
2 * Copyright (C) 2004-2005 Lee Hardy <lee -at- leeh.co.uk>
3 * Copyright (C) 2004-2005 ircd-ratbox development team
4 */
5 #ifndef INCLUDED_HOOK_H
6 #define INCLUDED_HOOK_H
7
8 typedef struct
9 {
10 char *name;
11 rb_dlink_list hooks;
12 } hook;
13
14 typedef void (*hookfn) (void *data);
15
16 extern int h_iosend_id;
17 extern int h_iorecv_id;
18 extern int h_iorecvctrl_id;
19
20 extern int h_burst_client;
21 extern int h_burst_channel;
22 extern int h_burst_finished;
23 extern int h_server_introduced;
24 extern int h_server_eob;
25 extern int h_client_exit;
26 extern int h_after_client_exit;
27 extern int h_umode_changed;
28 extern int h_new_local_user;
29 extern int h_new_remote_user;
30 extern int h_introduce_client;
31 extern int h_can_kick;
32 extern int h_privmsg_channel;
33 extern int h_privmsg_user;
34 extern int h_conf_read_start;
35 extern int h_conf_read_end;
36 extern int h_outbound_msgbuf;
37 extern int h_rehash;
38
39 void init_hook(void);
40 int register_hook(const char *name);
41 void add_hook(const char *name, hookfn fn);
42 void remove_hook(const char *name, hookfn fn);
43 void call_hook(int id, void *arg);
44
45 typedef struct
46 {
47 struct Client *client;
48 void *arg1;
49 void *arg2;
50 } hook_data;
51
52 typedef struct
53 {
54 struct Client *client;
55 const void *arg1;
56 const void *arg2;
57 } hook_cdata;
58
59 typedef struct
60 {
61 struct Client *client;
62 const void *arg1;
63 int arg2;
64 int result;
65 } hook_data_int;
66
67 typedef struct
68 {
69 struct Client *client;
70 struct Client *target;
71 struct Channel *chptr;
72 int approved;
73 } hook_data_client;
74
75 typedef struct
76 {
77 struct Client *client;
78 struct Channel *chptr;
79 int approved;
80 } hook_data_channel;
81
82 typedef struct
83 {
84 struct Client *client;
85 struct Channel *chptr;
86 const char *key;
87 } hook_data_channel_activity;
88
89 typedef struct
90 {
91 struct Client *client;
92 struct Channel *chptr;
93 struct membership *msptr;
94 struct Client *target;
95 int approved;
96 int dir;
97 const char *modestr;
98 const char *error;
99 } hook_data_channel_approval;
100
101 typedef struct
102 {
103 struct Client *client;
104 struct Client *target;
105 int approved;
106 } hook_data_client_approval;
107
108 typedef struct
109 {
110 struct Client *local_link; /* local client originating this, or NULL */
111 struct Client *target; /* dying client */
112 struct Client *from; /* causing client (could be &me or target) */
113 const char *comment;
114 } hook_data_client_exit;
115
116 typedef struct
117 {
118 struct Client *client;
119 const char *reason;
120 const char *orig_reason;
121 } hook_data_client_quit;
122
123 typedef struct
124 {
125 struct Client *client;
126 unsigned int oldumodes;
127 unsigned int oldsnomask;
128 } hook_data_umode_changed;
129
130 enum message_type {
131 MESSAGE_TYPE_NOTICE,
132 MESSAGE_TYPE_PRIVMSG,
133 MESSAGE_TYPE_PART,
134 MESSAGE_TYPE_COUNT
135 };
136
137 typedef struct
138 {
139 enum message_type msgtype;
140 struct Client *source_p;
141 struct Channel *chptr;
142 const char *text;
143 int approved;
144 } hook_data_privmsg_channel;
145
146 typedef struct
147 {
148 enum message_type msgtype;
149 struct Client *source_p;
150 struct Client *target_p;
151 const char *text;
152 int approved;
153 } hook_data_privmsg_user;
154
155 typedef struct
156 {
157 bool signal;
158 } hook_data_rehash;
159
160 #endif