]> jfr.im git - solanum.git/blame_incremental - include/hook.h
Centralise banmask matching logic
[solanum.git] / include / hook.h
... / ...
CommitLineData
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
8typedef struct
9{
10 char *name;
11 rb_dlink_list hooks;
12} hook;
13
14typedef void (*hookfn) (void *data);
15
16extern int h_iosend_id;
17extern int h_iorecv_id;
18extern int h_iorecvctrl_id;
19
20extern int h_burst_client;
21extern int h_burst_channel;
22extern int h_burst_finished;
23extern int h_server_introduced;
24extern int h_server_eob;
25extern int h_client_exit;
26extern int h_after_client_exit;
27extern int h_umode_changed;
28extern int h_new_local_user;
29extern int h_new_remote_user;
30extern int h_introduce_client;
31extern int h_can_kick;
32extern int h_privmsg_channel;
33extern int h_privmsg_user;
34extern int h_conf_read_start;
35extern int h_conf_read_end;
36extern int h_outbound_msgbuf;
37extern int h_rehash;
38
39void init_hook(void);
40int register_hook(const char *name);
41void add_hook(const char *name, hookfn fn);
42void remove_hook(const char *name, hookfn fn);
43void call_hook(int id, void *arg);
44
45typedef struct
46{
47 struct Client *client;
48 void *arg1;
49 void *arg2;
50} hook_data;
51
52typedef struct
53{
54 struct Client *client;
55 const void *arg1;
56 const void *arg2;
57} hook_cdata;
58
59typedef struct
60{
61 struct Client *client;
62 const void *arg1;
63 int arg2;
64 int result;
65} hook_data_int;
66
67typedef struct
68{
69 struct Client *client;
70 struct Client *target;
71 struct Channel *chptr;
72 int approved;
73} hook_data_client;
74
75typedef struct
76{
77 struct Client *client;
78 struct Channel *chptr;
79 int approved;
80} hook_data_channel;
81
82typedef struct
83{
84 struct Client *client;
85 struct Channel *chptr;
86 const char *key;
87} hook_data_channel_activity;
88
89typedef 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
100typedef struct
101{
102 struct Client *client;
103 struct Client *target;
104 int approved;
105} hook_data_client_approval;
106
107typedef 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
115typedef struct
116{
117 struct Client *client;
118 unsigned int oldumodes;
119 unsigned int oldsnomask;
120} hook_data_umode_changed;
121
122enum message_type {
123 MESSAGE_TYPE_NOTICE,
124 MESSAGE_TYPE_PRIVMSG,
125 MESSAGE_TYPE_PART,
126 MESSAGE_TYPE_COUNT
127};
128
129typedef 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
138typedef 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
147typedef struct
148{
149 bool signal;
150} hook_data_rehash;
151
152#endif