]> jfr.im git - solanum.git/blob - include/hook.h
m_sasl: check if the agent is present after every client_exit
[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 } hook_data_channel_approval;
99
100 typedef struct
101 {
102 struct Client *client;
103 struct Client *target;
104 int approved;
105 } hook_data_client_approval;
106
107 typedef struct
108 {
109 struct Client *local_link; /* local client originating this, or NULL */
110 struct Client *target; /* dying client */
111 struct Client *from; /* causing client (could be &me or target) */
112 const char *comment;
113 } hook_data_client_exit;
114
115 typedef struct
116 {
117 struct Client *client;
118 unsigned int oldumodes;
119 unsigned int oldsnomask;
120 } hook_data_umode_changed;
121
122 enum message_type {
123 MESSAGE_TYPE_NOTICE,
124 MESSAGE_TYPE_PRIVMSG,
125 MESSAGE_TYPE_PART,
126 MESSAGE_TYPE_COUNT
127 };
128
129 typedef struct
130 {
131 enum message_type msgtype;
132 struct Client *source_p;
133 struct Channel *chptr;
134 const char *text;
135 int approved;
136 } hook_data_privmsg_channel;
137
138 typedef struct
139 {
140 enum message_type msgtype;
141 struct Client *source_p;
142 struct Client *target_p;
143 const char *text;
144 int approved;
145 } hook_data_privmsg_user;
146
147 typedef struct
148 {
149 bool signal;
150 } hook_data_rehash;
151
152 #endif