]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/Module.3
New documentation!
[user/henk/code/inspircd.git] / docs / man / man3 / Module.3
1 .TH "Module" 3 "26 Apr 2005" "InspIRCd" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 Module \- Base class for all InspIRCd modules This class is the base class for InspIRCd modules.  
6
7 .PP
8 .SH SYNOPSIS
9 .br
10 .PP
11 \fC#include <modules.h>\fP
12 .PP
13 Inherits \fBclassbase\fP.
14 .PP
15 .SS "Public Member Functions"
16
17 .in +1c
18 .ti -1c
19 .RI "\fBModule\fP ()"
20 .br
21 .RI "\fIDefault constructor creates a module class. \fP"
22 .ti -1c
23 .RI "virtual \fB~Module\fP ()"
24 .br
25 .RI "\fIDefault destructor destroys a module class. \fP"
26 .ti -1c
27 .RI "virtual \fBVersion\fP \fBGetVersion\fP ()"
28 .br
29 .RI "\fIReturns the version number of a Module. \fP"
30 .ti -1c
31 .RI "virtual void \fBOnUserConnect\fP (\fBuserrec\fP *user)"
32 .br
33 .RI "\fICalled when a user connects. \fP"
34 .ti -1c
35 .RI "virtual void \fBOnUserQuit\fP (\fBuserrec\fP *user)"
36 .br
37 .RI "\fICalled when a user quits. \fP"
38 .ti -1c
39 .RI "virtual void \fBOnUserDisconnect\fP (\fBuserrec\fP *user)"
40 .br
41 .RI "\fICalled whenever a user's socket is closed. \fP"
42 .ti -1c
43 .RI "virtual void \fBOnUserJoin\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel)"
44 .br
45 .RI "\fICalled when a user joins a channel. \fP"
46 .ti -1c
47 .RI "virtual void \fBOnUserPart\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel)"
48 .br
49 .RI "\fICalled when a user parts a channel. \fP"
50 .ti -1c
51 .RI "virtual void \fBOnPacketTransmit\fP (std::string &data, std::string serv)"
52 .br
53 .RI "\fICalled before a packet is transmitted across the irc network between two irc servers. \fP"
54 .ti -1c
55 .RI "virtual void \fBOnPacketReceive\fP (std::string &data, std::string serv)"
56 .br
57 .RI "\fICalled after a packet is received from another irc server. \fP"
58 .ti -1c
59 .RI "virtual void \fBOnRehash\fP ()"
60 .br
61 .RI "\fICalled on rehash. \fP"
62 .ti -1c
63 .RI "virtual void \fBOnServerRaw\fP (std::string &raw, bool inbound, \fBuserrec\fP *user)"
64 .br
65 .RI "\fICalled when a raw command is transmitted or received. \fP"
66 .ti -1c
67 .RI "virtual int \fBOnExtendedMode\fP (\fBuserrec\fP *user, void *target, char modechar, int type, bool mode_on, \fBstring_list\fP &params)"
68 .br
69 .RI "\fICalled whenever an extended mode is to be processed. \fP"
70 .ti -1c
71 .RI "virtual int \fBOnUserPreJoin\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, const char *cname)"
72 .br
73 .RI "\fICalled whenever a user is about to join a channel, before any processing is done. \fP"
74 .ti -1c
75 .RI "virtual int \fBOnUserPreKick\fP (\fBuserrec\fP *source, \fBuserrec\fP *user, \fBchanrec\fP *chan, std::string reason)"
76 .br
77 .RI "\fICalled whenever a user is about to be kicked. \fP"
78 .ti -1c
79 .RI "virtual void \fBOnUserKick\fP (\fBuserrec\fP *source, \fBuserrec\fP *user, \fBchanrec\fP *chan, std::string reason)"
80 .br
81 .RI "\fICalled whenever a user is kicked. \fP"
82 .ti -1c
83 .RI "virtual void \fBOnOper\fP (\fBuserrec\fP *user)"
84 .br
85 .RI "\fICalled whenever a user opers locally. \fP"
86 .ti -1c
87 .RI "virtual void \fBOnInfo\fP (\fBuserrec\fP *user)"
88 .br
89 .RI "\fICalled whenever a user types /INFO. \fP"
90 .ti -1c
91 .RI "virtual void \fBOnWhois\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest)"
92 .br
93 .RI "\fICalled whenever a /WHOIS is performed on a local user. \fP"
94 .ti -1c
95 .RI "virtual int \fBOnUserPreInvite\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBchanrec\fP *channel)"
96 .br
97 .RI "\fICalled whenever a user is about to invite another user into a channel, before any processing is done. \fP"
98 .ti -1c
99 .RI "virtual int \fBOnUserPreMessage\fP (\fBuserrec\fP *user, void *dest, int target_type, std::string &text)"
100 .br
101 .RI "\fICalled whenever a user is about to PRIVMSG A user or a channel, before any processing is done. \fP"
102 .ti -1c
103 .RI "virtual int \fBOnUserPreNotice\fP (\fBuserrec\fP *user, void *dest, int target_type, std::string &text)"
104 .br
105 .RI "\fICalled whenever a user is about to NOTICE A user or a channel, before any processing is done. \fP"
106 .ti -1c
107 .RI "virtual int \fBOnUserPreNick\fP (\fBuserrec\fP *user, std::string newnick)"
108 .br
109 .RI "\fICalled before any nickchange, local or remote. \fP"
110 .ti -1c
111 .RI "virtual void \fBOnUserPostNick\fP (\fBuserrec\fP *user, std::string oldnick)"
112 .br
113 .RI "\fICalled after any nickchange, local or remote. \fP"
114 .ti -1c
115 .RI "virtual int \fBOnAccessCheck\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBchanrec\fP *channel, int access_type)"
116 .br
117 .RI "\fICalled before an action which requires a channel privilage check. \fP"
118 .ti -1c
119 .RI "virtual \fBstring_list\fP \fBOnUserSync\fP (\fBuserrec\fP *user)"
120 .br
121 .RI "\fICalled during a netburst to sync user data. \fP"
122 .ti -1c
123 .RI "virtual \fBstring_list\fP \fBOnChannelSync\fP (\fBchanrec\fP *chan)"
124 .br
125 .RI "\fICalled during a netburst to sync channel data. \fP"
126 .ti -1c
127 .RI "virtual void \fBOn005Numeric\fP (std::string &output)"
128 .br
129 .RI "\fICalled when a 005 numeric is about to be output. \fP"
130 .ti -1c
131 .RI "virtual int \fBOnKill\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, std::string reason)"
132 .br
133 .RI "\fICalled when a client is disconnected by KILL. \fP"
134 .ti -1c
135 .RI "virtual void \fBOnLoadModule\fP (\fBModule\fP *mod, std::string name)"
136 .br
137 .RI "\fICalled whenever a module is loaded. \fP"
138 .ti -1c
139 .RI "virtual void \fBOnBackgroundTimer\fP (time_t curtime)"
140 .br
141 .RI "\fICalled once every five seconds for background processing. \fP"
142 .ti -1c
143 .RI "virtual void \fBOnSendList\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel, char mode)"
144 .br
145 .RI "\fICalled whenever a list is needed for a listmode. \fP"
146 .ti -1c
147 .RI "virtual int \fBOnPreCommand\fP (std::string command, char **parameters, int pcnt, \fBuserrec\fP *user)"
148 .br
149 .RI "\fICalled whenever any command is about to be executed. \fP"
150 .ti -1c
151 .RI "virtual bool \fBOnCheckReady\fP (\fBuserrec\fP *user)"
152 .br
153 .RI "\fICalled to check if a user who is connecting can now be allowed to register If any modules return false for this function, the user is held in the waiting state until all modules return true. \fP"
154 .ti -1c
155 .RI "virtual void \fBOnUserRegister\fP (\fBuserrec\fP *user)"
156 .br
157 .RI "\fICalled whenever a user is about to register their connection (e.g. \fP"
158 .ti -1c
159 .RI "virtual int \fBOnRawMode\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, char mode, std::string param, bool adding, int pcnt)"
160 .br
161 .RI "\fICalled whenever a mode character is processed. \fP"
162 .ti -1c
163 .RI "virtual int \fBOnCheckInvite\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan)"
164 .br
165 .RI "\fICalled whenever a user joins a channel, to determine if invite checks should go ahead or not. \fP"
166 .ti -1c
167 .RI "virtual int \fBOnCheckKey\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, std::string keygiven)"
168 .br
169 .RI "\fICalled whenever a user joins a channel, to determine if key checks should go ahead or not. \fP"
170 .ti -1c
171 .RI "virtual int \fBOnCheckLimit\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan)"
172 .br
173 .RI "\fICalled whenever a user joins a channel, to determine if channel limit checks should go ahead or not. \fP"
174 .ti -1c
175 .RI "virtual int \fBOnCheckBan\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan)"
176 .br
177 .RI "\fICalled whenever a user joins a channel, to determine if banlist checks should go ahead or not. \fP"
178 .ti -1c
179 .RI "virtual void \fBOnStats\fP (char symbol)"
180 .br
181 .RI "\fICalled on all /STATS commands This method is triggered for all /STATS use, including stats symbols handled by the core. \fP"
182 .ti -1c
183 .RI "virtual int \fBOnChangeLocalUserHost\fP (\fBuserrec\fP *user, std::string newhost)"
184 .br
185 .RI "\fICalled whenever a change of a local users displayed host is attempted. \fP"
186 .ti -1c
187 .RI "virtual int \fBOnChangeLocalUserGECOS\fP (\fBuserrec\fP *user, std::string newhost)"
188 .br
189 .RI "\fICalled whenever a change of a local users GECOS (fullname field) is attempted. \fP"
190 .ti -1c
191 .RI "virtual int \fBOnLocalTopicChange\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, std::string topic)"
192 .br
193 .RI "\fICalled whenever a topic is changed by a local user. \fP"
194 .ti -1c
195 .RI "virtual int \fBOnMeshToken\fP (char token, \fBstring_list\fP params, \fBserverrec\fP *source, \fBserverrec\fP *reply, std::string tcp_host, std::string ipaddr, int port)"
196 .br
197 .RI "\fICalled whenever an unknown token is received in a server to server link. \fP"
198 .ti -1c
199 .RI "virtual void \fBOnEvent\fP (\fBEvent\fP *event)"
200 .br
201 .RI "\fICalled whenever an \fBEvent\fP class is sent to all module by another module. \fP"
202 .ti -1c
203 .RI "virtual char * \fBOnRequest\fP (\fBRequest\fP *request)"
204 .br
205 .RI "\fICalled whenever a \fBRequest\fP class is sent to your module by another module. \fP"
206 .ti -1c
207 .RI "virtual int \fBOnOperCompare\fP (std::string password, std::string input)"
208 .br
209 .RI "\fICalled whenever an oper password is to be compared to what a user has input. \fP"
210 .ti -1c
211 .RI "virtual void \fBOnGlobalOper\fP (\fBuserrec\fP *user)"
212 .br
213 .RI "\fICalled whenever a user is given usermode +o, anywhere on the network. \fP"
214 .ti -1c
215 .RI "virtual void \fBOnGlobalConnect\fP (\fBuserrec\fP *user)"
216 .br
217 .RI "\fICalled whenever a user connects, anywhere on the network. \fP"
218 .in -1c
219 .SH "Detailed Description"
220 .PP 
221 Base class for all InspIRCd modules This class is the base class for InspIRCd modules. 
222
223 All modules must inherit from this class, its methods will be called when irc server events occur. class inherited from module must be instantiated by the \fBModuleFactory\fP class (see relevent section) for the plugin to be initialised. 
224 .PP
225 Definition at line 236 of file modules.h.
226 .SH "Constructor & Destructor Documentation"
227 .PP 
228 .SS "Module::Module ()"
229 .PP
230 Default constructor creates a module class. Definition at line 361 of file modules.cpp.
231 .PP
232 .nf
233 361 { }
234 .fi
235 .SS "Module::~\fBModule\fP ()\fC [virtual]\fP"
236 .PP
237 Default destructor destroys a module class. Definition at line 362 of file modules.cpp.
238 .PP
239 .nf
240 362 { }
241 .fi
242 .SH "Member Function Documentation"
243 .PP 
244 .SS "\fBVersion\fP Module::GetVersion ()\fC [virtual]\fP"
245 .PP
246 Returns the version number of a Module. The method should return a \fBVersion\fP object with its version information assigned via \fBVersion::Version\fPDefinition at line 374 of file modules.cpp.
247 .PP
248 References VF_VENDOR.
249 .PP
250 .nf
251 374 { return Version(1,0,0,0,VF_VENDOR); }
252 .fi
253 .SS "void Module::On005Numeric (std::string & output)\fC [virtual]\fP"
254 .PP
255 Called when a 005 numeric is about to be output. The module should modify the 005 numeric if needed to indicate its features.Definition at line 386 of file modules.cpp.
256 .PP
257 .nf
258 386 { };
259 .fi
260 .SS "int Module::OnAccessCheck (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBchanrec\fP * channel, int access_type)\fC [virtual]\fP"
261 .PP
262 Called before an action which requires a channel privilage check. This function is called before many functions which check a users status on a channel, for example before opping a user, deopping a user, kicking a user, etc. There are several values for access_type which indicate for what reason access is being checked. These are:
263 .br
264
265 .br
266  AC_KICK (0) - A user is being kicked
267 .br
268  AC_DEOP (1) - a user is being deopped
269 .br
270  AC_OP (2) - a user is being opped
271 .br
272  AC_VOICE (3) - a user is being voiced
273 .br
274  AC_DEVOICE (4) - a user is being devoiced
275 .br
276  AC_HALFOP (5) - a user is being halfopped
277 .br
278  AC_DEHALFOP (6) - a user is being dehalfopped
279 .br
280  AC_INVITE (7) - a user is being invited
281 .br
282  AC_GENERAL_MODE (8) - a user channel mode is being changed
283 .br
284
285 .br
286  Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be denied 'upstream' causing other checks such as AC_DEOP to not be reached. Be very careful with use of the AC_GENERAL_MODE type, as it may inadvertently override the behaviour of other modules. When the access_type is AC_GENERAL_MODE, the destination of the mode will be NULL (as it has not yet been determined).Definition at line 383 of file modules.cpp.
287 .PP
288 References ACR_DEFAULT.
289 .PP
290 .nf
291 383 { return ACR_DEFAULT; };
292 .fi
293 .SS "void Module::OnBackgroundTimer (time_t curtime)\fC [virtual]\fP"
294 .PP
295 Called once every five seconds for background processing. This timer can be used to control timed features. Its period is not accurate enough to be used as a clock, but it is gauranteed to be called at least once in any five second period, directly from the main loop of the server.Definition at line 389 of file modules.cpp.
296 .PP
297 .nf
298 389 { };
299 .fi
300 .SS "int Module::OnChangeLocalUserGECOS (\fBuserrec\fP * user, std::string newhost)\fC [virtual]\fP"
301 .PP
302 Called whenever a change of a local users GECOS (fullname field) is attempted. return 1 to deny the name change, or 0 to allow it.Definition at line 403 of file modules.cpp.
303 .PP
304 .nf
305 403 { return 0; };
306 .fi
307 .SS "int Module::OnChangeLocalUserHost (\fBuserrec\fP * user, std::string newhost)\fC [virtual]\fP"
308 .PP
309 Called whenever a change of a local users displayed host is attempted. Return 1 to deny the host change, or 0 to allow it.Definition at line 402 of file modules.cpp.
310 .PP
311 .nf
312 402 { return 0; };
313 .fi
314 .SS "\fBstring_list\fP Module::OnChannelSync (\fBchanrec\fP * chan)\fC [virtual]\fP"
315 .PP
316 Called during a netburst to sync channel data. This is called during the netburst on a per-channel basis. You should use this call to up any special channel-related things which are implemented by your module, e.g. sending listmodes. You may return multiple commands in the string_list.Definition at line 385 of file modules.cpp.
317 .PP
318 References string_list.
319 .PP
320 .nf
321 385 { string_list empty; return empty; }
322 .fi
323 .SS "int Module::OnCheckBan (\fBuserrec\fP * user, \fBchanrec\fP * chan)\fC [virtual]\fP"
324 .PP
325 Called whenever a user joins a channel, to determine if banlist checks should go ahead or not. This method will always be called for each join, wether or not the user actually matches a channel ban, and determines the outcome of an if statement around the whole section of ban checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. Definition at line 400 of file modules.cpp.
326 .PP
327 .nf
328 400 { return 0; };
329 .fi
330 .SS "int Module::OnCheckInvite (\fBuserrec\fP * user, \fBchanrec\fP * chan)\fC [virtual]\fP"
331 .PP
332 Called whenever a user joins a channel, to determine if invite checks should go ahead or not. This method will always be called for each join, wether or not the channel is actually +i, and determines the outcome of an if statement around the whole section of invite checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event.Definition at line 397 of file modules.cpp.
333 .PP
334 .nf
335 397 { return 0; };
336 .fi
337 .SS "int Module::OnCheckKey (\fBuserrec\fP * user, \fBchanrec\fP * chan, std::string keygiven)\fC [virtual]\fP"
338 .PP
339 Called whenever a user joins a channel, to determine if key checks should go ahead or not. This method will always be called for each join, wether or not the channel is actually +k, and determines the outcome of an if statement around the whole section of key checking code. if the user specified no key, the keygiven string will be a valid but empty value. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. Definition at line 398 of file modules.cpp.
340 .PP
341 .nf
342 398 { return 0; };
343 .fi
344 .SS "int Module::OnCheckLimit (\fBuserrec\fP * user, \fBchanrec\fP * chan)\fC [virtual]\fP"
345 .PP
346 Called whenever a user joins a channel, to determine if channel limit checks should go ahead or not. This method will always be called for each join, wether or not the channel is actually +l, and determines the outcome of an if statement around the whole section of channel limit checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. Definition at line 399 of file modules.cpp.
347 .PP
348 .nf
349 399 { return 0; };
350 .fi
351 .SS "bool Module::OnCheckReady (\fBuserrec\fP * user)\fC [virtual]\fP"
352 .PP
353 Called to check if a user who is connecting can now be allowed to register If any modules return false for this function, the user is held in the waiting state until all modules return true. For example a module which implements ident lookups will continue to return false for a user until their ident lookup is completed. Note that the registration timeout for a user overrides these checks, if the registration timeout is reached, the user is disconnected even if modules report that the user is not ready to connect.Definition at line 392 of file modules.cpp.
354 .PP
355 .nf
356 392 { return true; };
357 .fi
358 .SS "void Module::OnEvent (\fBEvent\fP * event)\fC [virtual]\fP"
359 .PP
360 Called whenever an \fBEvent\fP class is sent to all module by another module. Please see the documentation of \fBEvent::Send()\fP for further information. The \fBEvent\fP sent can always be assumed to be non-NULL, you should *always* check the value of \fBEvent::GetEventID()\fP before doing anything to the event data, and you should *not* change the event data in any way!Definition at line 406 of file modules.cpp.
361 .PP
362 .nf
363 406 { return; };
364 .fi
365 .SS "int Module::OnExtendedMode (\fBuserrec\fP * user, void * target, char modechar, int type, bool mode_on, \fBstring_list\fP & params)\fC [virtual]\fP"
366 .PP
367 Called whenever an extended mode is to be processed. The type parameter is MT_SERVER, MT_CLIENT or MT_CHANNEL, dependent on where the mode is being changed. mode_on is set when the mode is being set, in which case params contains a list of parameters for the mode as strings. If mode_on is false, the mode is being removed, and parameters may contain the parameters for the mode, dependent on wether they were defined when a mode handler was set up with \fBServer::AddExtendedMode\fP If the mode is a channel mode, target is a chanrec*, and if it is a user mode, target is a userrec*. You must cast this value yourself to make use of it.Definition at line 373 of file modules.cpp.
368 .PP
369 .nf
370 373 { return false; }
371 .fi
372 .SS "void Module::OnGlobalConnect (\fBuserrec\fP * user)\fC [virtual]\fP"
373 .PP
374 Called whenever a user connects, anywhere on the network. This event is informational only. You should not change any user information in this event. To do so, use the OnUserConnect method to change the state of local users.Definition at line 410 of file modules.cpp.
375 .PP
376 .nf
377 410 { };
378 .fi
379 .SS "void Module::OnGlobalOper (\fBuserrec\fP * user)\fC [virtual]\fP"
380 .PP
381 Called whenever a user is given usermode +o, anywhere on the network. You cannot override this and prevent it from happening as it is already happened and such a task must be performed by another server. You can however bounce modes by sending servermodes out to reverse mode changes.Definition at line 409 of file modules.cpp.
382 .PP
383 .nf
384 409 { };
385 .fi
386 .SS "void Module::OnInfo (\fBuserrec\fP * user)\fC [virtual]\fP"
387 .PP
388 Called whenever a user types /INFO. The userrec will contain the information of the user who typed the command. Modules may use this method to output their own credits in /INFO (which is the ircd's version of an about box). It is purposefully not possible to modify any info that has already been output, or halt the list. You must write a 371 numeric to the user, containing your info in the following format:
389 .PP
390 <nick> :information hereDefinition at line 376 of file modules.cpp.
391 .PP
392 .nf
393 376 { };
394 .fi
395 .SS "int Module::OnKill (\fBuserrec\fP * source, \fBuserrec\fP * dest, std::string reason)\fC [virtual]\fP"
396 .PP
397 Called when a client is disconnected by KILL. If a client is killed by a server, e.g. a nickname collision or protocol error, source is NULL. Return 1 from this function to prevent the kill, and 0 from this function to allow it as normal. If you prevent the kill no output will be sent to the client, it is down to your module to generate this information. NOTE: It is NOT advisable to stop kills which originate from servers. If you do so youre risking race conditions, desyncs and worse!Definition at line 387 of file modules.cpp.
398 .PP
399 .nf
400 387 { return 0; };
401 .fi
402 .SS "void Module::OnLoadModule (\fBModule\fP * mod, std::string name)\fC [virtual]\fP"
403 .PP
404 Called whenever a module is loaded. mod will contain a pointer to the module, and string will contain its name, for example m_widgets.so. This function is primary for dependency checking, your module may decide to enable some extra features if it sees that you have for example loaded 'm_killwidgets.so' with 'm_makewidgets.so'. It is highly recommended that modules do *NOT* bail if they cannot satisfy dependencies, but instead operate under reduced functionality, unless the dependency is absolutely neccessary (e.g. a module that extends the features of another module).Definition at line 388 of file modules.cpp.
405 .PP
406 .nf
407 388 { };
408 .fi
409 .SS "int Module::OnLocalTopicChange (\fBuserrec\fP * user, \fBchanrec\fP * chan, std::string topic)\fC [virtual]\fP"
410 .PP
411 Called whenever a topic is changed by a local user. Return 1 to deny the topic change, or 0 to allow it.Definition at line 404 of file modules.cpp.
412 .PP
413 .nf
414 404 { return 0; };
415 .fi
416 .SS "int Module::OnMeshToken (char token, \fBstring_list\fP params, \fBserverrec\fP * source, \fBserverrec\fP * reply, std::string tcp_host, std::string ipaddr, int port)\fC [virtual]\fP"
417 .PP
418 Called whenever an unknown token is received in a server to server link. The token value is the unknown token -- please check that no other modules are using the token that you use. Returning 1 supresses the 'unknown token type' error which is usually sent to all opers with +s. The params list is a list of parameters, and if any parameters start with a colon (:) it is treated as the whole of the last parameter, identical to how RFC messages are handled. source is the sender of the message, and reply is what should be replied to for a unicast message. Note that there are not many messages in the mesh protocol which require unicast messaging. tcp_host is the server name as a string, ipaddr is its ip address in dotted decimal notation and port is the port number it is using.Definition at line 405 of file modules.cpp.
419 .PP
420 .nf
421 405 { return 0; };
422 .fi
423 .SS "void Module::OnOper (\fBuserrec\fP * user)\fC [virtual]\fP"
424 .PP
425 Called whenever a user opers locally. The userrec will contain the oper mode 'o' as this function is called after any modifications are made to the user's structure by the core.Definition at line 375 of file modules.cpp.
426 .PP
427 .nf
428 375 { };
429 .fi
430 .SS "int Module::OnOperCompare (std::string password, std::string input)\fC [virtual]\fP"
431 .PP
432 Called whenever an oper password is to be compared to what a user has input. The password field (from the config file) is in 'password' and is to be compared against 'input'. This method allows for encryption of oper passwords and much more besides. You should return a nonzero value if you want to allow the comparison or zero if you wish to do nothing.Definition at line 408 of file modules.cpp.
433 .PP
434 .nf
435 408 { return 0; };
436 .fi
437 .SS "void Module::OnPacketReceive (std::string & data, std::string serv)\fC [virtual]\fP"
438 .PP
439 Called after a packet is received from another irc server. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.Definition at line 369 of file modules.cpp.
440 .PP
441 .nf
442 369 { }
443 .fi
444 .SS "void Module::OnPacketTransmit (std::string & data, std::string serv)\fC [virtual]\fP"
445 .PP
446 Called before a packet is transmitted across the irc network between two irc servers. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.Definition at line 368 of file modules.cpp.
447 .PP
448 .nf
449 368 { }
450 .fi
451 .SS "int Module::OnPreCommand (std::string command, char ** parameters, int pcnt, \fBuserrec\fP * user)\fC [virtual]\fP"
452 .PP
453 Called whenever any command is about to be executed. This event occurs for all registered commands, wether they are registered in the core, or another module, but it will not occur for invalid commands (e.g. ones which do not exist within the command table). By returning 1 from this method you may prevent the command being executed. If you do this, no output is created by the core, and it is down to your module to produce any output neccessary. Note that unless you return 1, you should not destroy any structures (e.g. by using \fBServer::QuitUser\fP) otherwise when the command's handler function executes after your method returns, it will be passed an invalid pointer to the user object and crash!)Definition at line 391 of file modules.cpp.
454 .PP
455 .nf
456 391 { return 0; };
457 .fi
458 .SS "int Module::OnRawMode (\fBuserrec\fP * user, \fBchanrec\fP * chan, char mode, std::string param, bool adding, int pcnt)\fC [virtual]\fP"
459 .PP
460 Called whenever a mode character is processed. Return 1 from this function to block the mode character from being processed entirely, so that you may perform your own code instead. Note that this method allows you to override modes defined by other modes, but this is NOT RECOMMENDED!Definition at line 396 of file modules.cpp.
461 .PP
462 .nf
463 396 { return 0; };
464 .fi
465 .SS "void Module::OnRehash ()\fC [virtual]\fP"
466 .PP
467 Called on rehash. This method is called prior to a /REHASH or when a SIGHUP is received from the operating system. You should use it to reload any files so that your module keeps in step with the rest of the application.Definition at line 370 of file modules.cpp.
468 .PP
469 .nf
470 370 { }
471 .fi
472 .SS "char * Module::OnRequest (\fBRequest\fP * request)\fC [virtual]\fP"
473 .PP
474 Called whenever a \fBRequest\fP class is sent to your module by another module. Please see the documentation of \fBRequest::Send()\fP for further information. The \fBRequest\fP sent can always be assumed to be non-NULL, you should not change the request object or its data. Your method may return arbitary data in the char* result which the requesting module may be able to use for pre-determined purposes (e.g. the results of an SQL query, etc).Definition at line 407 of file modules.cpp.
475 .PP
476 Referenced by Request::Send().
477 .PP
478 .nf
479 407 { return NULL; };
480 .fi
481 .SS "void Module::OnSendList (\fBuserrec\fP * user, \fBchanrec\fP * channel, char mode)\fC [virtual]\fP"
482 .PP
483 Called whenever a list is needed for a listmode. For example, when a /MODE #channel +b (without any other parameters) is called, if a module was handling +b this function would be called. The function can then output any lists it wishes to. Please note that all modules will see all mode characters to provide the ability to extend each other, so please only output a list if the mode character given matches the one(s) you want to handle.Definition at line 390 of file modules.cpp.
484 .PP
485 .nf
486 390 { };
487 .fi
488 .SS "void Module::OnServerRaw (std::string & raw, bool inbound, \fBuserrec\fP * user)\fC [virtual]\fP"
489 .PP
490 Called when a raw command is transmitted or received. This method is the lowest level of handler available to a module. It will be called with raw data which is passing through a connected socket. If you wish, you may munge this data by changing the string parameter 'raw'. If you do this, after your function exits it will immediately be cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where inbound is set to true) the value of user will be the userrec of the connection sending the data. This is not possible for outbound data because the data may be being routed to multiple targets.Definition at line 371 of file modules.cpp.
491 .PP
492 .nf
493 371 { }
494 .fi
495 .SS "void Module::OnStats (char symbol)\fC [virtual]\fP"
496 .PP
497 Called on all /STATS commands This method is triggered for all /STATS use, including stats symbols handled by the core. Definition at line 401 of file modules.cpp.
498 .PP
499 .nf
500 401 { };
501 .fi
502 .SS "void Module::OnUserConnect (\fBuserrec\fP * user)\fC [virtual]\fP"
503 .PP
504 Called when a user connects. The details of the connecting user are available to you in the parameter userrec *userDefinition at line 363 of file modules.cpp.
505 .PP
506 .nf
507 363 { }
508 .fi
509 .SS "void Module::OnUserDisconnect (\fBuserrec\fP * user)\fC [virtual]\fP"
510 .PP
511 Called whenever a user's socket is closed. The details of the exiting user are available to you in the parameter userrec *user This event is called for all users, registered or not, as a cleanup method for modules which might assign resources to user, such as dns lookups, objects and sockets.Definition at line 365 of file modules.cpp.
512 .PP
513 .nf
514 365 { }
515 .fi
516 .SS "void Module::OnUserJoin (\fBuserrec\fP * user, \fBchanrec\fP * channel)\fC [virtual]\fP"
517 .PP
518 Called when a user joins a channel. The details of the joining user are available to you in the parameter userrec *user, and the details of the channel they have joined is available in the variable chanrec *channelDefinition at line 366 of file modules.cpp.
519 .PP
520 .nf
521 366 { }
522 .fi
523 .SS "void Module::OnUserKick (\fBuserrec\fP * source, \fBuserrec\fP * user, \fBchanrec\fP * chan, std::string reason)\fC [virtual]\fP"
524 .PP
525 Called whenever a user is kicked. If this method is called, the kick is already underway and cannot be prevented, so to prevent a kick, please use \fBModule::OnUserPreKick\fP instead of this method.Definition at line 395 of file modules.cpp.
526 .PP
527 .nf
528 395 { };
529 .fi
530 .SS "void Module::OnUserPart (\fBuserrec\fP * user, \fBchanrec\fP * channel)\fC [virtual]\fP"
531 .PP
532 Called when a user parts a channel. The details of the leaving user are available to you in the parameter userrec *user, and the details of the channel they have left is available in the variable chanrec *channelDefinition at line 367 of file modules.cpp.
533 .PP
534 .nf
535 367 { }
536 .fi
537 .SS "void Module::OnUserPostNick (\fBuserrec\fP * user, std::string oldnick)\fC [virtual]\fP"
538 .PP
539 Called after any nickchange, local or remote. This can be used to track users after nickchanges have been applied. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). Because this method is called after the nickchange is taken place, no return values are possible to indicate forbidding of the nick change. Use OnUserPreNick for this. Definition at line 382 of file modules.cpp.
540 .PP
541 .nf
542 382 { };
543 .fi
544 .SS "int Module::OnUserPreInvite (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBchanrec\fP * channel)\fC [virtual]\fP"
545 .PP
546 Called whenever a user is about to invite another user into a channel, before any processing is done. Returning 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter invites to channels.Definition at line 378 of file modules.cpp.
547 .PP
548 .nf
549 378 { return 0; };
550 .fi
551 .SS "int Module::OnUserPreJoin (\fBuserrec\fP * user, \fBchanrec\fP * chan, const char * cname)\fC [virtual]\fP"
552 .PP
553 Called whenever a user is about to join a channel, before any processing is done. Returning a value of 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to mimic +b, +k, +l etc. Returning -1 from this function forces the join to be allowed, bypassing restrictions such as banlists, invite, keys etc.
554 .PP
555 IMPORTANT NOTE!
556 .PP
557 If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel record is created. This will cause chanrec* chan to be NULL. There is very little you can do in form of processing on the actual channel record at this point, however the channel NAME will still be passed in char* cname, so that you could for example implement a channel blacklist or whitelist, etc.Definition at line 372 of file modules.cpp.
558 .PP
559 .nf
560 372 { return 0; }
561 .fi
562 .SS "int Module::OnUserPreKick (\fBuserrec\fP * source, \fBuserrec\fP * user, \fBchanrec\fP * chan, std::string reason)\fC [virtual]\fP"
563 .PP
564 Called whenever a user is about to be kicked. Returning a value of 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. Definition at line 394 of file modules.cpp.
565 .PP
566 .nf
567 394 { return 0; };
568 .fi
569 .SS "int Module::OnUserPreMessage (\fBuserrec\fP * user, void * dest, int target_type, std::string & text)\fC [virtual]\fP"
570 .PP
571 Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done. Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent.Definition at line 379 of file modules.cpp.
572 .PP
573 .nf
574 379 { return 0; };
575 .fi
576 .SS "int Module::OnUserPreNick (\fBuserrec\fP * user, std::string newnick)\fC [virtual]\fP"
577 .PP
578 Called before any nickchange, local or remote. This can be used to implement Q-lines etc. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). If your method returns nonzero, the nickchange is silently forbidden, and it is down to your module to generate some meaninful output.Definition at line 381 of file modules.cpp.
579 .PP
580 .nf
581 381 { return 0; };
582 .fi
583 .SS "int Module::OnUserPreNotice (\fBuserrec\fP * user, void * dest, int target_type, std::string & text)\fC [virtual]\fP"
584 .PP
585 Called whenever a user is about to NOTICE A user or a channel, before any processing is done. Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent. You may alter the message text as you wish before relinquishing control to the next module in the chain, and if no other modules block the text this altered form of the text will be sent out to the user and possibly to other servers.Definition at line 380 of file modules.cpp.
586 .PP
587 .nf
588 380 { return 0; };
589 .fi
590 .SS "void Module::OnUserQuit (\fBuserrec\fP * user)\fC [virtual]\fP"
591 .PP
592 Called when a user quits. The details of the exiting user are available to you in the parameter userrec *user This event is only called when the user is fully registered when they quit. To catch raw disconnections, use the OnUserDisconnect method.Definition at line 364 of file modules.cpp.
593 .PP
594 .nf
595 364 { }
596 .fi
597 .SS "void Module::OnUserRegister (\fBuserrec\fP * user)\fC [virtual]\fP"
598 .PP
599 Called whenever a user is about to register their connection (e.g. before the user is sent the MOTD etc). Modules can use this method if they are performing a function which must be done before the actual connection is completed (e.g. ident lookups, dnsbl lookups, etc). Note that you should NOT delete the user record here by causing a disconnection! Use OnUserConnect for that instead.Definition at line 393 of file modules.cpp.
600 .PP
601 .nf
602 393 { };
603 .fi
604 .SS "\fBstring_list\fP Module::OnUserSync (\fBuserrec\fP * user)\fC [virtual]\fP"
605 .PP
606 Called during a netburst to sync user data. This is called during the netburst on a per-user basis. You should use this call to up any special user-related things which are implemented by your module, e.g. sending listmodes. You may return multiple commands in the string_list.Definition at line 384 of file modules.cpp.
607 .PP
608 References string_list.
609 .PP
610 .nf
611 384 { string_list empty; return empty; }
612 .fi
613 .SS "void Module::OnWhois (\fBuserrec\fP * source, \fBuserrec\fP * dest)\fC [virtual]\fP"
614 .PP
615 Called whenever a /WHOIS is performed on a local user. The source parameter contains the details of the user who issued the WHOIS command, and the dest parameter contains the information of the user they are whoising.Definition at line 377 of file modules.cpp.
616 .PP
617 .nf
618 377 { };
619 .fi
620
621
622 .SH "Author"
623 .PP 
624 Generated automatically by Doxygen for InspIRCd from the source code.