]> jfr.im git - solanum.git/blame - include/hook.h
m_sasl: check if the agent is present after every client_exit
[solanum.git] / include / hook.h
CommitLineData
212380e3
AC
1/*
2 * Copyright (C) 2004-2005 Lee Hardy <lee -at- leeh.co.uk>
3 * Copyright (C) 2004-2005 ircd-ratbox development team
212380e3
AC
4 */
5#ifndef INCLUDED_HOOK_H
6#define INCLUDED_HOOK_H
7
8typedef struct
9{
10 char *name;
5b96d9a6 11 rb_dlink_list hooks;
212380e3
AC
12} hook;
13
14typedef void (*hookfn) (void *data);
15
2e819b6b
JT
16extern int h_iosend_id;
17extern int h_iorecv_id;
18extern int h_iorecvctrl_id;
212380e3 19
2e819b6b
JT
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;
15b05f95 26extern int h_after_client_exit;
2e819b6b
JT
27extern int h_umode_changed;
28extern int h_new_local_user;
29extern int h_new_remote_user;
30extern int h_introduce_client;
5f8d323c 31extern int h_can_kick;
ca4c2a86
AC
32extern int h_privmsg_channel;
33extern int h_privmsg_user;
7d603754
KB
34extern int h_conf_read_start;
35extern int h_conf_read_end;
4f8ababa 36extern int h_outbound_msgbuf;
2575a78b 37extern int h_rehash;
212380e3
AC
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
48a2b7c1
AC
45typedef struct
46{
47 struct Client *client;
48 void *arg1;
49 void *arg2;
50} hook_data;
51
212380e3
AC
52typedef struct
53{
54 struct Client *client;
55 const void *arg1;
56 const void *arg2;
48a2b7c1 57} hook_cdata;
212380e3
AC
58
59typedef struct
60{
61 struct Client *client;
62 const void *arg1;
63 int arg2;
ea2d2700 64 int result;
212380e3
AC
65} hook_data_int;
66
67typedef struct
68{
69 struct Client *client;
70 struct Client *target;
9e07c8f7
AC
71 struct Channel *chptr;
72 int approved;
212380e3
AC
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;
5bc95eaf 86 const char *key;
212380e3
AC
87} hook_data_channel_activity;
88
5f8d323c
AC
89typedef struct
90{
91 struct Client *client;
92 struct Channel *chptr;
6ca4dec9 93 struct membership *msptr;
5f8d323c
AC
94 struct Client *target;
95 int approved;
202d4966 96 int dir;
b870a5f8 97 const char *modestr;
5f8d323c
AC
98} hook_data_channel_approval;
99
212380e3
AC
100typedef struct
101{
102 struct Client *client;
9d745dbd 103 struct Client *target;
212380e3
AC
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
ca4c2a86
AC
122enum message_type {
123 MESSAGE_TYPE_NOTICE,
124 MESSAGE_TYPE_PRIVMSG,
62cf5b40 125 MESSAGE_TYPE_PART,
ca4c2a86
AC
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
2575a78b
EM
147typedef struct
148{
149 bool signal;
150} hook_data_rehash;
151
212380e3 152#endif