]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/Server.3
Added final documentation for inspircd Beta 4
[user/henk/code/inspircd.git] / docs / man / man3 / Server.3
1 .TH "Server" 3 "7 May 2005" "InspIRCd" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 Server \- Allows server output and query functions This class contains methods which allow a module to query the state of the irc server, and produce output to users and other servers.  
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 "\fBServer\fP ()"
20 .br
21 .RI "\fIDefault constructor. \fP"
22 .ti -1c
23 .RI "virtual \fB~Server\fP ()"
24 .br
25 .RI "\fIDefault destructor. \fP"
26 .ti -1c
27 .RI "virtual void \fBSendOpers\fP (std::string s)"
28 .br
29 .RI "\fISends text to all opers. \fP"
30 .ti -1c
31 .RI "virtual void \fBLog\fP (int level, std::string s)"
32 .br
33 .RI "\fIWrites a log string. \fP"
34 .ti -1c
35 .RI "virtual void \fBSend\fP (int Socket, std::string s)"
36 .br
37 .RI "\fISends a line of text down a TCP/IP socket. \fP"
38 .ti -1c
39 .RI "virtual void \fBSendServ\fP (int Socket, std::string s)"
40 .br
41 .RI "\fISends text from the server to a socket. \fP"
42 .ti -1c
43 .RI "virtual void \fBSendChannelServerNotice\fP (std::string ServName, \fBchanrec\fP *Channel, std::string text)"
44 .br
45 .RI "\fIWrites text to a channel, but from a server, including all. \fP"
46 .ti -1c
47 .RI "virtual void \fBSendFrom\fP (int Socket, \fBuserrec\fP *User, std::string s)"
48 .br
49 .RI "\fISends text from a user to a socket. \fP"
50 .ti -1c
51 .RI "virtual void \fBSendTo\fP (\fBuserrec\fP *Source, \fBuserrec\fP *Dest, std::string s)"
52 .br
53 .RI "\fISends text from a user to another user. \fP"
54 .ti -1c
55 .RI "virtual void \fBSendChannel\fP (\fBuserrec\fP *User, \fBchanrec\fP *Channel, std::string s, bool IncludeSender)"
56 .br
57 .RI "\fISends text from a user to a channel (mulicast). \fP"
58 .ti -1c
59 .RI "virtual bool \fBCommonChannels\fP (\fBuserrec\fP *u1, \fBuserrec\fP *u2)"
60 .br
61 .RI "\fIReturns true if two users share a common channel. \fP"
62 .ti -1c
63 .RI "virtual void \fBSendCommon\fP (\fBuserrec\fP *User, std::string text, bool IncludeSender)"
64 .br
65 .RI "\fISends text from a user to one or more channels (mulicast). \fP"
66 .ti -1c
67 .RI "virtual void \fBSendWallops\fP (\fBuserrec\fP *User, std::string text)"
68 .br
69 .RI "\fISends a WALLOPS message. \fP"
70 .ti -1c
71 .RI "virtual bool \fBIsNick\fP (std::string nick)"
72 .br
73 .RI "\fIReturns true if a nick is valid. \fP"
74 .ti -1c
75 .RI "virtual int \fBCountUsers\fP (\fBchanrec\fP *c)"
76 .br
77 .RI "\fIReturns a count of the number of users on a channel. \fP"
78 .ti -1c
79 .RI "virtual \fBuserrec\fP * \fBFindNick\fP (std::string nick)"
80 .br
81 .RI "\fIAttempts to look up a nick and return a pointer to it. \fP"
82 .ti -1c
83 .RI "virtual \fBuserrec\fP * \fBFindDescriptor\fP (int socket)"
84 .br
85 .RI "\fIAttempts to look up a nick using the file descriptor associated with that nick. \fP"
86 .ti -1c
87 .RI "virtual \fBchanrec\fP * \fBFindChannel\fP (std::string channel)"
88 .br
89 .RI "\fIAttempts to look up a channel and return a pointer to it. \fP"
90 .ti -1c
91 .RI "virtual std::string \fBChanMode\fP (\fBuserrec\fP *User, \fBchanrec\fP *Chan)"
92 .br
93 .RI "\fIAttempts to look up a user's privilages on a channel. \fP"
94 .ti -1c
95 .RI "virtual bool \fBIsOnChannel\fP (\fBuserrec\fP *User, \fBchanrec\fP *Chan)"
96 .br
97 .RI "\fIChecks if a user is on a channel. \fP"
98 .ti -1c
99 .RI "virtual std::string \fBGetServerName\fP ()"
100 .br
101 .RI "\fIReturns the server name of the server where the module is loaded. \fP"
102 .ti -1c
103 .RI "virtual std::string \fBGetNetworkName\fP ()"
104 .br
105 .RI "\fIReturns the network name, global to all linked servers. \fP"
106 .ti -1c
107 .RI "virtual \fBAdmin\fP \fBGetAdmin\fP ()"
108 .br
109 .RI "\fIReturns the information of the server as returned by the /ADMIN command. \fP"
110 .ti -1c
111 .RI "virtual bool \fBAddExtendedMode\fP (char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)"
112 .br
113 .RI "\fIAdds an extended mode letter which is parsed by a module. \fP"
114 .ti -1c
115 .RI "virtual bool \fBAddExtendedListMode\fP (char modechar)"
116 .br
117 .RI "\fIAdds an extended mode letter which is parsed by a module and handled in a list fashion. \fP"
118 .ti -1c
119 .RI "virtual void \fBAddCommand\fP (char *cmd, handlerfunc f, char flags, int minparams, char *source)"
120 .br
121 .RI "\fIAdds a command to the command table. \fP"
122 .ti -1c
123 .RI "virtual void \fBSendMode\fP (char **parameters, int pcnt, \fBuserrec\fP *user)"
124 .br
125 .RI "\fISends a servermode. \fP"
126 .ti -1c
127 .RI "virtual void \fBSendToModeMask\fP (std::string modes, int flags, std::string text)"
128 .br
129 .RI "\fISends to all users matching a mode mask You must specify one or more usermodes as the first parameter. \fP"
130 .ti -1c
131 .RI "virtual \fBchanrec\fP * \fBJoinUserToChannel\fP (\fBuserrec\fP *user, std::string cname, std::string key)"
132 .br
133 .RI "\fIForces a user to join a channel. \fP"
134 .ti -1c
135 .RI "virtual \fBchanrec\fP * \fBPartUserFromChannel\fP (\fBuserrec\fP *user, std::string cname, std::string reason)"
136 .br
137 .RI "\fIForces a user to part a channel. \fP"
138 .ti -1c
139 .RI "virtual void \fBChangeUserNick\fP (\fBuserrec\fP *user, std::string nickname)"
140 .br
141 .RI "\fIForces a user nickchange. \fP"
142 .ti -1c
143 .RI "virtual void \fBQuitUser\fP (\fBuserrec\fP *user, std::string reason)"
144 .br
145 .RI "\fIForces a user to quit with the specified reason. \fP"
146 .ti -1c
147 .RI "virtual bool \fBMatchText\fP (std::string sliteral, std::string spattern)"
148 .br
149 .RI "\fIMatches text against a glob pattern. \fP"
150 .ti -1c
151 .RI "virtual void \fBCallCommandHandler\fP (std::string commandname, char **parameters, int pcnt, \fBuserrec\fP *user)"
152 .br
153 .RI "\fICalls the handler for a command, either implemented by the core or by another module. \fP"
154 .ti -1c
155 .RI "virtual void \fBChangeHost\fP (\fBuserrec\fP *user, std::string host)"
156 .br
157 .RI "\fIChange displayed hostname of a user. \fP"
158 .ti -1c
159 .RI "virtual void \fBChangeGECOS\fP (\fBuserrec\fP *user, std::string gecos)"
160 .br
161 .RI "\fIChange GECOS (fullname) of a user. \fP"
162 .ti -1c
163 .RI "virtual bool \fBIsUlined\fP (std::string server)"
164 .br
165 .RI "\fIReturns true if the servername you give is ulined. \fP"
166 .ti -1c
167 .RI "virtual \fBchanuserlist\fP \fBGetUsers\fP (\fBchanrec\fP *chan)"
168 .br
169 .RI "\fIFetches the userlist of a channel. \fP"
170 .ti -1c
171 .RI "virtual bool \fBUserToPseudo\fP (\fBuserrec\fP *user, std::string message)"
172 .br
173 .RI "\fIRemove a user's connection to the irc server, but leave their client in existence in the user hash. \fP"
174 .ti -1c
175 .RI "virtual bool \fBPseudoToUser\fP (\fBuserrec\fP *alive, \fBuserrec\fP *zombie, std::string message)"
176 .br
177 .RI "\fIThis user takes one user, and switches their file descriptor with another user, so that one user 'becomes' the other. \fP"
178 .ti -1c
179 .RI "virtual void \fBAddGLine\fP (long duration, std::string source, std::string reason, std::string hostmask)"
180 .br
181 .RI "\fIAdds a G-line The G-line is propogated to all of the servers in the mesh and enforced as soon as it is added. \fP"
182 .ti -1c
183 .RI "virtual void \fBAddQLine\fP (long duration, std::string source, std::string reason, std::string nickname)"
184 .br
185 .RI "\fIAdds a Q-line The Q-line is propogated to all of the servers in the mesh and enforced as soon as it is added. \fP"
186 .ti -1c
187 .RI "virtual void \fBAddZLine\fP (long duration, std::string source, std::string reason, std::string ipaddr)"
188 .br
189 .RI "\fIAdds a Z-line The Z-line is propogated to all of the servers in the mesh and enforced as soon as it is added. \fP"
190 .ti -1c
191 .RI "virtual void \fBAddKLine\fP (long duration, std::string source, std::string reason, std::string hostmask)"
192 .br
193 .RI "\fIAdds a K-line The K-line is enforced as soon as it is added. \fP"
194 .ti -1c
195 .RI "virtual void \fBAddELine\fP (long duration, std::string source, std::string reason, std::string hostmask)"
196 .br
197 .RI "\fIAdds a E-line The E-line is enforced as soon as it is added. \fP"
198 .ti -1c
199 .RI "virtual bool \fBDelGLine\fP (std::string hostmask)"
200 .br
201 .RI "\fIDeletes a G-Line from all servers on the mesh. \fP"
202 .ti -1c
203 .RI "virtual bool \fBDelQLine\fP (std::string nickname)"
204 .br
205 .RI "\fIDeletes a Q-Line from all servers on the mesh. \fP"
206 .ti -1c
207 .RI "virtual bool \fBDelZLine\fP (std::string ipaddr)"
208 .br
209 .RI "\fIDeletes a Z-Line from all servers on the mesh. \fP"
210 .ti -1c
211 .RI "virtual bool \fBDelKLine\fP (std::string hostmask)"
212 .br
213 .RI "\fIDeletes a local K-Line. \fP"
214 .ti -1c
215 .RI "virtual bool \fBDelELine\fP (std::string hostmask)"
216 .br
217 .RI "\fIDeletes a local E-Line. \fP"
218 .ti -1c
219 .RI "virtual long \fBCalcDuration\fP (std::string duration)"
220 .br
221 .RI "\fICalculates a duration This method will take a string containing a formatted duration (e.g. \fP"
222 .ti -1c
223 .RI "virtual bool \fBIsValidMask\fP (std::string mask)"
224 .br
225 .RI "\fIReturns true if a nick!ident string is correctly formatted, false if otherwise. \fP"
226 .ti -1c
227 .RI "virtual void \fBMeshSendAll\fP (std::string text)"
228 .br
229 .RI "\fISends a line of text to all connected servers. \fP"
230 .ti -1c
231 .RI "virtual void \fBMeshSendCommon\fP (\fBuserrec\fP *user, std::string text)"
232 .br
233 .RI "\fIThis method sends a line of text to all servers who have users which share common channels with the user you provide. \fP"
234 .ti -1c
235 .RI "virtual void \fBMeshSendAllAlive\fP (std::string text)"
236 .br
237 .RI "\fIThis function is equivalent to Server::MeshSendToAll except it will only route to servers which are directly routable. \fP"
238 .ti -1c
239 .RI "virtual void \fBMeshSendUnicast\fP (std::string destination, std::string text)"
240 .br
241 .RI "\fIThis function sends a line of text directly to a server. \fP"
242 .ti -1c
243 .RI "virtual void \fBMeshSendAllExcept\fP (std::string target, std::string text)"
244 .br
245 .RI "\fIThis function sends to all servers EXCEPT the one you specify. \fP"
246 .ti -1c
247 .RI "virtual bool \fBMeshCheckChan\fP (\fBchanrec\fP *c, std::string servername)"
248 .br
249 .RI "\fIThis function is used to check if any users on channel c are on server servername. \fP"
250 .ti -1c
251 .RI "virtual bool \fBMeshCheckCommon\fP (\fBuserrec\fP *u, std::string servername)"
252 .br
253 .RI "\fIThis function is used to check if user u has any channels in common with users on servername. \fP"
254 .ti -1c
255 .RI "virtual \fBModule\fP * \fBFindModule\fP (std::string name)"
256 .br
257 .RI "\fIThis function finds a module by name. \fP"
258 .in -1c
259 .SH "Detailed Description"
260 .PP 
261 Allows server output and query functions This class contains methods which allow a module to query the state of the irc server, and produce output to users and other servers. 
262
263 All modules should instantiate at least one copy of this class, and use its member functions to perform their tasks. 
264 .PP
265 Definition at line 694 of file modules.h.
266 .SH "Constructor & Destructor Documentation"
267 .PP 
268 .SS "Server::Server ()"
269 .PP
270 Default constructor. Creates a Server object.Definition at line 421 of file modules.cpp.
271 .PP
272 .nf
273 422 {
274 423 }
275 .fi
276 .SS "Server::~\fBServer\fP ()\fC [virtual]\fP"
277 .PP
278 Default destructor. Destroys a Server object.Definition at line 425 of file modules.cpp.
279 .PP
280 .nf
281 426 {
282 427 }
283 .fi
284 .SH "Member Function Documentation"
285 .PP 
286 .SS "void Server::AddCommand (char * cmd, handlerfunc f, char flags, int minparams, char * source)\fC [virtual]\fP"
287 .PP
288 Adds a command to the command table. This allows modules to add extra commands into the command table. You must place a function within your module which is is of type handlerfunc:
289 .PP
290 typedef void (handlerfunc) (char**, int, userrec*); ... void \fBhandle_kill(char **parameters, int pcnt, userrec *user)\fP
291 .PP
292 When the command is typed, the parameters will be placed into the parameters array (similar to argv) and the parameter count will be placed into pcnt (similar to argv). There will never be any less parameters than the 'minparams' value you specified when creating the command. The *user parameter is the class of the user which caused the command to trigger, who will always have the flag you specified in 'flags' when creating the initial command. For example to create an oper only command create the commands with flags='o'. The source parameter is used for resource tracking, and should contain the name of your module (with file extension) e.g. 'm_blarp.so'. If you place the wrong identifier here, you can cause crashes if your module is unloaded.Definition at line 494 of file modules.cpp.
293 .PP
294 References createcommand().
295 .PP
296 .nf
297 495 {
298 496         createcommand(cmd,f,flags,minparams,source);
299 497 }
300 .fi
301 .SS "void Server::AddELine (long duration, std::string source, std::string reason, std::string hostmask)\fC [virtual]\fP"
302 .PP
303 Adds a E-line The E-line is enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 731 of file modules.cpp.
304 .PP
305 References add_eline(), and duration().
306 .PP
307 .nf
308 732 {
309 733         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
310 734 }
311 .fi
312 .SS "bool Server::AddExtendedListMode (char modechar)\fC [virtual]\fP"
313 .PP
314 Adds an extended mode letter which is parsed by a module and handled in a list fashion. This call is used to implement modes like +q and +a. The characteristics of these modes are as follows:
315 .PP
316 (1) They are ALWAYS on channels, not on users, therefore their type is MT_CHANNEL
317 .PP
318 (2) They always take exactly one parameter when being added or removed
319 .PP
320 (3) They can be set multiple times, usually on users in channels
321 .PP
322 (4) The mode and its parameter are NOT stored in the channels modes structure
323 .PP
324 It is down to the module handling the mode to maintain state and determine what 'items' (e.g. users, or a banlist) have the mode set on them, and process the modes at the correct times, e.g. during access checks on channels, etc. When the extended mode is triggered the OnExtendedMode method will be triggered as above. Note that the target you are given will be a channel, if for example your mode is set 'on a user' (in for example +a) you must use Server::Find to locate the user the mode is operating on. Your mode handler may return 1 to handle the mode AND tell the core to display the mode change, e.g. '+aaa one two three' in the case of the mode for 'two', or it may return -1 to 'eat' the mode change, so the above example would become '+aa one three' after processing.Definition at line 657 of file modules.cpp.
325 .PP
326 References DoAddExtendedMode(), ModeMakeList(), and MT_CHANNEL.
327 .PP
328 .nf
329 658 {
330 659         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
331 660         if (res)
332 661                 ModeMakeList(modechar);
333 662         return res;
334 663 }
335 .fi
336 .SS "bool Server::AddExtendedMode (char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)\fC [virtual]\fP"
337 .PP
338 Adds an extended mode letter which is parsed by a module. This allows modules to add extra mode letters, e.g. +x for hostcloak. the 'type' parameter is either MT_CHANNEL, MT_CLIENT, or MT_SERVER, to indicate wether the mode is a channel mode, a client mode, or a server mode. requires_oper is used with MT_CLIENT type modes only to indicate the mode can only be set or unset by an oper. If this is used for MT_CHANNEL type modes it is ignored. params_when_on is the number of modes to expect when the mode is turned on (for type MT_CHANNEL only), e.g. with mode +k, this would have a value of 1. the params_when_off value has a similar value to params_when_on, except it indicates the number of parameters to expect when the mode is disabled. Modes which act in a similar way to channel mode +l (e.g. require a parameter to enable, but not to disable) should use this parameter. The function returns false if the mode is unavailable, and will not attempt to allocate another character, as this will confuse users. This also means that as only one module can claim a specific mode character, the core does not need to keep track of which modules own which modes, which speeds up operation of the server. In this version, a mode can have at most one parameter, attempting to use more parameters will have undefined effects.Definition at line 629 of file modules.cpp.
339 .PP
340 References DEBUG, DoAddExtendedMode(), MT_CLIENT, and MT_SERVER.
341 .PP
342 .nf
343 630 {
344 631         if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
345 632         {
346 633                 if (type == MT_SERVER)
347 634                 {
348 635                         log(DEBUG,'*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion');
349 636                         return false;
350 637                 }
351 638                 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
352 639                 {
353 640                         log(DEBUG,'*** API ERROR *** Parameters on MT_CLIENT modes are not supported');
354 641                         return false;
355 642                 }
356 643                 if ((params_when_on>1) || (params_when_off>1))
357 644                 {
358 645                         log(DEBUG,'*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported');
359 646                         return false;
360 647                 }
361 648                 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
362 649         }
363 650         else
364 651         {
365 652                 log(DEBUG,'*** API ERROR *** Muppet modechar detected.');
366 653         }
367 654         return false;
368 655 }
369 .fi
370 .SS "void Server::AddGLine (long duration, std::string source, std::string reason, std::string hostmask)\fC [virtual]\fP"
371 .PP
372 Adds a G-line The G-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.Definition at line 711 of file modules.cpp.
373 .PP
374 References add_gline(), and duration().
375 .PP
376 .nf
377 712 {
378 713         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
379 714 }
380 .fi
381 .SS "void Server::AddKLine (long duration, std::string source, std::string reason, std::string hostmask)\fC [virtual]\fP"
382 .PP
383 Adds a K-line The K-line is enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 726 of file modules.cpp.
384 .PP
385 References add_kline(), and duration().
386 .PP
387 .nf
388 727 {
389 728         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
390 729 }
391 .fi
392 .SS "void Server::AddQLine (long duration, std::string source, std::string reason, std::string nickname)\fC [virtual]\fP"
393 .PP
394 Adds a Q-line The Q-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 716 of file modules.cpp.
395 .PP
396 References add_qline(), and duration().
397 .PP
398 .nf
399 717 {
400 718         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
401 719 }
402 .fi
403 .SS "void Server::AddZLine (long duration, std::string source, std::string reason, std::string ipaddr)\fC [virtual]\fP"
404 .PP
405 Adds a Z-line The Z-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 721 of file modules.cpp.
406 .PP
407 References add_zline(), and duration().
408 .PP
409 .nf
410 722 {
411 723         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
412 724 }
413 .fi
414 .SS "long Server::CalcDuration (std::string duration)\fC [virtual]\fP"
415 .PP
416 Calculates a duration This method will take a string containing a formatted duration (e.g. '1w2d') and return its value as a total number of seconds. This is the same function used internally by /GLINE etc to set the ban times.Definition at line 761 of file modules.cpp.
417 .PP
418 References duration().
419 .PP
420 .nf
421 762 {
422 763         return duration(delta.c_str());
423 764 }
424 .fi
425 .SS "void Server::CallCommandHandler (std::string commandname, char ** parameters, int pcnt, \fBuserrec\fP * user)\fC [virtual]\fP"
426 .PP
427 Calls the handler for a command, either implemented by the core or by another module. You can use this function to trigger other commands in the ircd, such as PRIVMSG, JOIN, KICK etc, or even as a method of callback. By defining command names that are untypeable for users on irc (e.g. those which contain a  or 
428 .br
429 ) you may use them as callback identifiers. The first parameter to this method is the name of the command handler you wish to call, e.g. PRIVMSG. This will be a command handler previously registered by the core or wih \fBAddCommand()\fP. The second parameter is an array of parameters, and the third parameter is a count of parameters in the array. If you do not pass enough parameters to meet the minimum needed by the handler, the functiom will silently ignore it. The final parameter is the user executing the command handler, used for privilage checks, etc.Definition at line 484 of file modules.cpp.
430 .PP
431 .nf
432 485 {
433 486         call_handler(commandname.c_str(),parameters,pcnt,user);
434 487 }
435 .fi
436 .SS "void Server::ChangeGECOS (\fBuserrec\fP * user, std::string gecos)\fC [virtual]\fP"
437 .PP
438 Change GECOS (fullname) of a user. You should always call this method to change a user's GECOS rather than writing directly to the fullname member of userrec, as any change applied via this method will be propogated to any linked servers.Definition at line 577 of file modules.cpp.
439 .PP
440 References ChangeName().
441 .PP
442 .nf
443 578 {
444 579         ChangeName(user,gecos.c_str());
445 580 }
446 .fi
447 .SS "void Server::ChangeHost (\fBuserrec\fP * user, std::string host)\fC [virtual]\fP"
448 .PP
449 Change displayed hostname of a user. You should always call this method to change a user's host rather than writing directly to the dhost member of userrec, as any change applied via this method will be propogated to any linked servers.Definition at line 572 of file modules.cpp.
450 .PP
451 References ChangeDisplayedHost().
452 .PP
453 .nf
454 573 {
455 574         ChangeDisplayedHost(user,host.c_str());
456 575 }
457 .fi
458 .SS "void Server::ChangeUserNick (\fBuserrec\fP * user, std::string nickname)\fC [virtual]\fP"
459 .PP
460 Forces a user nickchange. This command works similarly to SVSNICK, and can be used to implement Q-lines etc. If you specify an invalid nickname, the nick change will be dropped and the target user will receive the error numeric for it.Definition at line 469 of file modules.cpp.
461 .PP
462 .nf
463 470 {
464 471         force_nickchange(user,nickname.c_str());
465 472 }
466 .fi
467 .SS "std::string Server::ChanMode (\fBuserrec\fP * User, \fBchanrec\fP * Chan)\fC [virtual]\fP"
468 .PP
469 Attempts to look up a user's privilages on a channel. This function will return a string containing either @, , +, or an empty string, representing the user's privilages upon the channel you specify.Definition at line 602 of file modules.cpp.
470 .PP
471 References cmode().
472 .PP
473 .nf
474 603 {
475 604         return cmode(User,Chan);
476 605 }
477 .fi
478 .SS "bool Server::CommonChannels (\fBuserrec\fP * u1, \fBuserrec\fP * u2)\fC [virtual]\fP"
479 .PP
480 Returns true if two users share a common channel. This method is used internally by the NICK and QUIT commands, and the \fBServer::SendCommon\fP method.Definition at line 550 of file modules.cpp.
481 .PP
482 References common_channels().
483 .PP
484 .nf
485 551 {
486 552         return (common_channels(u1,u2) != 0);
487 553 }
488 .fi
489 .SS "int Server::CountUsers (\fBchanrec\fP * c)\fC [virtual]\fP"
490 .PP
491 Returns a count of the number of users on a channel. This will NEVER be 0, as if the chanrec exists, it will have at least one user in the channel.Definition at line 665 of file modules.cpp.
492 .PP
493 .nf
494 666 {
495 667         return usercount(c);
496 668 }
497 .fi
498 .SS "bool Server::DelELine (std::string hostmask)\fC [virtual]\fP"
499 .PP
500 Deletes a local E-Line. Definition at line 756 of file modules.cpp.
501 .PP
502 References del_eline().
503 .PP
504 .nf
505 757 {
506 758         del_eline(hostmask.c_str());
507 759 }
508 .fi
509 .SS "bool Server::DelGLine (std::string hostmask)\fC [virtual]\fP"
510 .PP
511 Deletes a G-Line from all servers on the mesh. Definition at line 736 of file modules.cpp.
512 .PP
513 References del_gline().
514 .PP
515 .nf
516 737 {
517 738         del_gline(hostmask.c_str());
518 739 }
519 .fi
520 .SS "bool Server::DelKLine (std::string hostmask)\fC [virtual]\fP"
521 .PP
522 Deletes a local K-Line. Definition at line 751 of file modules.cpp.
523 .PP
524 References del_kline().
525 .PP
526 .nf
527 752 {
528 753         del_kline(hostmask.c_str());
529 754 }
530 .fi
531 .SS "bool Server::DelQLine (std::string nickname)\fC [virtual]\fP"
532 .PP
533 Deletes a Q-Line from all servers on the mesh. Definition at line 741 of file modules.cpp.
534 .PP
535 References del_qline().
536 .PP
537 .nf
538 742 {
539 743         del_qline(nickname.c_str());
540 744 }
541 .fi
542 .SS "bool Server::DelZLine (std::string ipaddr)\fC [virtual]\fP"
543 .PP
544 Deletes a Z-Line from all servers on the mesh. Definition at line 746 of file modules.cpp.
545 .PP
546 References del_zline().
547 .PP
548 .nf
549 747 {
550 748         del_zline(ipaddr.c_str());
551 749 }
552 .fi
553 .SS "\fBchanrec\fP * Server::FindChannel (std::string channel)\fC [virtual]\fP"
554 .PP
555 Attempts to look up a channel and return a pointer to it. This function will return NULL if the channel does not exist.Definition at line 597 of file modules.cpp.
556 .PP
557 .nf
558 598 {
559 599         return FindChan(channel.c_str());
560 600 }
561 .fi
562 .SS "\fBuserrec\fP * Server::FindDescriptor (int socket)\fC [virtual]\fP"
563 .PP
564 Attempts to look up a nick using the file descriptor associated with that nick. This function will return NULL if the file descriptor is not associated with a valid user.Definition at line 592 of file modules.cpp.
565 .PP
566 References fd_ref_table.
567 .PP
568 .nf
569 593 {
570 594         return (socket < 65536 ? fd_ref_table[socket] : NULL);
571 595 }
572 .fi
573 .SS "\fBModule\fP * Server::FindModule (std::string name)\fC [virtual]\fP"
574 .PP
575 This function finds a module by name. You must provide the filename of the module. If the module cannot be found (is not loaded) the function will return NULL.Definition at line 839 of file modules.cpp.
576 .PP
577 References MODCOUNT, module_names, and modules.
578 .PP
579 .nf
580 840 {
581 841         for (int i = 0; i <= MODCOUNT; i++)
582 842         {
583 843                 if (module_names[i] == name)
584 844                 {
585 845                         return modules[i];
586 846                 }
587 847         }
588 848         return NULL;
589 849 }
590 .fi
591 .SS "\fBuserrec\fP * Server::FindNick (std::string nick)\fC [virtual]\fP"
592 .PP
593 Attempts to look up a nick and return a pointer to it. This function will return NULL if the nick does not exist.Definition at line 587 of file modules.cpp.
594 .PP
595 .nf
596 588 {
597 589         return Find(nick);
598 590 }
599 .fi
600 .SS "\fBAdmin\fP Server::GetAdmin ()\fC [virtual]\fP"
601 .PP
602 Returns the information of the server as returned by the /ADMIN command. See the \fBAdmin\fP class for further information of the return value. The members \fBAdmin::Nick\fP, \fBAdmin::Email\fP and \fBAdmin::Name\fP contain the information for the server where the module is loaded.Definition at line 622 of file modules.cpp.
603 .PP
604 .nf
605 623 {
606 624         return Admin(getadminname(),getadminemail(),getadminnick());
607 625 }
608 .fi
609 .SS "std::string Server::GetNetworkName ()\fC [virtual]\fP"
610 .PP
611 Returns the network name, global to all linked servers. Definition at line 617 of file modules.cpp.
612 .PP
613 .nf
614 618 {
615 619         return getnetworkname();
616 620 }
617 .fi
618 .SS "std::string Server::GetServerName ()\fC [virtual]\fP"
619 .PP
620 Returns the server name of the server where the module is loaded. Definition at line 612 of file modules.cpp.
621 .PP
622 .nf
623 613 {
624 614         return getservername();
625 615 }
626 .fi
627 .SS "\fBchanuserlist\fP Server::GetUsers (\fBchanrec\fP * chan)\fC [virtual]\fP"
628 .PP
629 Fetches the userlist of a channel. This function must be here and not a member of userrec or chanrec due to include constraints.Definition at line 457 of file modules.cpp.
630 .PP
631 References chanuserlist, chanrec::GetUsers(), and list.
632 .PP
633 .nf
634 458 {
635 459         chanuserlist userl;
636 460         userl.clear();
637 461         std::vector<char*> *list = chan->GetUsers();
638 462         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
639 463         {
640 464                 char* o = *i;
641 465                 userl.push_back((userrec*)o);
642 466         }
643 467         return userl;
644 468 }
645 .fi
646 .SS "bool Server::IsNick (std::string nick)\fC [virtual]\fP"
647 .PP
648 Returns true if a nick is valid. Nicks for unregistered connections will return false.Definition at line 582 of file modules.cpp.
649 .PP
650 References isnick().
651 .PP
652 .nf
653 583 {
654 584         return (isnick(nick.c_str()) != 0);
655 585 }
656 .fi
657 .SS "bool Server::IsOnChannel (\fBuserrec\fP * User, \fBchanrec\fP * Chan)\fC [virtual]\fP"
658 .PP
659 Checks if a user is on a channel. This function will return true or false to indicate if user 'User' is on channel 'Chan'.Definition at line 607 of file modules.cpp.
660 .PP
661 References has_channel().
662 .PP
663 .nf
664 608 {
665 609         return has_channel(User,Chan);
666 610 }
667 .fi
668 .SS "bool Server::IsUlined (std::string server)\fC [virtual]\fP"
669 .PP
670 Returns true if the servername you give is ulined. ULined servers have extra privilages. They are allowed to change nicknames on remote servers, change modes of clients which are on remote servers and set modes of channels where there are no channel operators for that channel on the ulined server, amongst other things. Ulined server data is also broadcast across the mesh at all times as opposed to selectively messaged in the case of normal servers, as many ulined server types (such as services) do not support meshed links and must operate in this manner.Definition at line 479 of file modules.cpp.
671 .PP
672 References is_uline().
673 .PP
674 .nf
675 480 {
676 481         return is_uline(server.c_str());
677 482 }
678 .fi
679 .SS "bool Server::IsValidMask (std::string mask)\fC [virtual]\fP"
680 .PP
681 Returns true if a nick!ident string is correctly formatted, false if otherwise. Definition at line 766 of file modules.cpp.
682 .PP
683 .nf
684 767 {
685 768         const char* dest = mask.c_str();
686 769         if (strchr(dest,'!')==0)
687 770                 return false;
688 771         if (strchr(dest,'@')==0)
689 772                 return false;
690 773         for (int i = 0; i < strlen(dest); i++)
691 774                 if (dest[i] < 32)
692 775                         return false;
693 776         for (int i = 0; i < strlen(dest); i++)
694 777                 if (dest[i] > 126)
695 778                         return false;
696 779         int c = 0;
697 780         for (int i = 0; i < strlen(dest); i++)
698 781                 if (dest[i] == '!')
699 782                         c++;
700 783         if (c>1)
701 784                 return false;
702 785         c = 0;
703 786         for (int i = 0; i < strlen(dest); i++)
704 787                 if (dest[i] == '@')
705 788                         c++;
706 789         if (c>1)
707 790                 return false;
708 791 
709 792         return true;
710 793 }
711 .fi
712 .SS "\fBchanrec\fP * Server::JoinUserToChannel (\fBuserrec\fP * user, std::string cname, std::string key)\fC [virtual]\fP"
713 .PP
714 Forces a user to join a channel. This is similar to svsjoin and can be used to implement redirection, etc. On success, the return value is a valid pointer to a chanrec* of the channel the user was joined to. On failure, the result is NULL.Definition at line 447 of file modules.cpp.
715 .PP
716 .nf
717 448 {
718 449         return add_channel(user,cname.c_str(),key.c_str(),false);
719 450 }
720 .fi
721 .SS "void Server::Log (int level, std::string s)\fC [virtual]\fP"
722 .PP
723 Writes a log string. This method writes a line of text to the log. If the level given is lower than the level given in the configuration, this command has no effect.Definition at line 489 of file modules.cpp.
724 .PP
725 .nf
726 490 {
727 491         log(level,'%s',s.c_str());
728 492 }
729 .fi
730 .SS "bool Server::MatchText (std::string sliteral, std::string spattern)\fC [virtual]\fP"
731 .PP
732 Matches text against a glob pattern. Uses the ircd's internal matching function to match string against a globbing pattern, e.g. *!*@*.com Returns true if the literal successfully matches the pattern, false if otherwise.Definition at line 434 of file modules.cpp.
733 .PP
734 .nf
735 435 {
736 436         char literal[MAXBUF],pattern[MAXBUF];
737 437         strlcpy(literal,sliteral.c_str(),MAXBUF);
738 438         strlcpy(pattern,spattern.c_str(),MAXBUF);
739 439         return match(literal,pattern);
740 440 }
741 .fi
742 .SS "bool Server::MeshCheckChan (\fBchanrec\fP * c, std::string servername)\fC [virtual]\fP"
743 .PP
744 This function is used to check if any users on channel c are on server servername. This is used internally by PRIVMSG etc. You should not need to use it.Definition at line 821 of file modules.cpp.
745 .PP
746 .nf
747 822 {
748 823         if (c)
749 824         {
750 825                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
751 826         }
752 827         else return false;
753 828 }
754 .fi
755 .SS "bool Server::MeshCheckCommon (\fBuserrec\fP * u, std::string servername)\fC [virtual]\fP"
756 .PP
757 This function is used to check if user u has any channels in common with users on servername. This is used internally by \fBServer::MeshSendCommon\fP. You should very rarely need to use it.Definition at line 830 of file modules.cpp.
758 .PP
759 .nf
760 831 {
761 832         if (u)
762 833         {
763 834                 return CommonOnThisServer(u,(char*)servername.c_str());
764 835         }
765 836         else return false;
766 837 }
767 .fi
768 .SS "void Server::MeshSendAll (std::string text)\fC [virtual]\fP"
769 .PP
770 Sends a line of text to all connected servers. If a server is not directly reachable, the core deals with routing the message, and will also deal with failures transparently.Definition at line 795 of file modules.cpp.
771 .PP
772 .nf
773 796 {
774 797         NetSendToAll((char*)text.c_str());
775 798 }
776 .fi
777 .SS "void Server::MeshSendAllAlive (std::string text)\fC [virtual]\fP"
778 .PP
779 This function is equivalent to Server::MeshSendToAll except it will only route to servers which are directly routable. Definition at line 806 of file modules.cpp.
780 .PP
781 .nf
782 807 {
783 808         NetSendToAllAlive((char*)text.c_str());
784 809 }
785 .fi
786 .SS "void Server::MeshSendAllExcept (std::string target, std::string text)\fC [virtual]\fP"
787 .PP
788 This function sends to all servers EXCEPT the one you specify. You should usually use this function to send messages, specifying the SENDER of your message as 'target'. This will prevent message loops.Definition at line 816 of file modules.cpp.
789 .PP
790 .nf
791 817 {
792 818         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
793 819 }
794 .fi
795 .SS "void Server::MeshSendCommon (\fBuserrec\fP * user, std::string text)\fC [virtual]\fP"
796 .PP
797 This method sends a line of text to all servers who have users which share common channels with the user you provide. For example, if user A is on server A, and they are on channels #one and #two, and user B is on server B, and also on channel #one, but user C is on server C and on neither #one or #two, this function will cause the text to only be sent to server B. However, if server B is only reachable via C, it will route it to C (you do not have to worry about this routing, it is done transparently, but its good to know how things work!)Definition at line 800 of file modules.cpp.
798 .PP
799 .nf
800 801 {
801 802         if (user)
802 803                 NetSendToCommon(user,(char*)text.c_str());
803 804 }
804 .fi
805 .SS "void Server::MeshSendUnicast (std::string destination, std::string text)\fC [virtual]\fP"
806 .PP
807 This function sends a line of text directly to a server. If the server is not directly routable at this time, the server attempts to route text through the mesh.Definition at line 811 of file modules.cpp.
808 .PP
809 .nf
810 812 {
811 813         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
812 814 }
813 .fi
814 .SS "\fBchanrec\fP * Server::PartUserFromChannel (\fBuserrec\fP * user, std::string cname, std::string reason)\fC [virtual]\fP"
815 .PP
816 Forces a user to part a channel. This is similar to svspart and can be used to implement redirection, etc. Although the return value of this function is a pointer to a channel record, the returned data is undefined and should not be read or written to. This behaviour may be changed in a future version.Definition at line 452 of file modules.cpp.
817 .PP
818 .nf
819 453 {
820 454         return del_channel(user,cname.c_str(),reason.c_str(),false);
821 455 }
822 .fi
823 .SS "bool Server::PseudoToUser (\fBuserrec\fP * alive, \fBuserrec\fP * zombie, std::string message)\fC [virtual]\fP"
824 .PP
825 This user takes one user, and switches their file descriptor with another user, so that one user 'becomes' the other. The user in 'alive' is booted off the server with the given message. The user referred to by 'zombie' should have previously been locked with Server::ZombifyUser, otherwise stale sockets and file descriptor leaks can occur. After this call, the pointer to alive will be invalid, and the pointer to zombie will be equivalent in effect to the old pointer to alive.Definition at line 681 of file modules.cpp.
826 .PP
827 References ucrec::channel, userrec::chans, userrec::ClearBuffer(), connection::fd, FD_MAGIC_NUMBER, fd_ref_table, connection::host, userrec::ident, chanrec::name, userrec::nick, chanrec::setby, chanrec::topic, and chanrec::topicset.
828 .PP
829 .nf
830 682 {
831 683         zombie->fd = alive->fd;
832 684         alive->fd = FD_MAGIC_NUMBER;
833 685         alive->ClearBuffer();
834 686         Write(zombie->fd,':%s!%s@%s NICK %s',alive->nick,alive->ident,alive->host,zombie->nick);
835 687         kill_link(alive,message.c_str());
836 688         fd_ref_table[zombie->fd] = zombie;
837 689         for (int i = 0; i != MAXCHANS; i++)
838 690         {
839 691                 if (zombie->chans[i].channel != NULL)
840 692                 {
841 693                         if (zombie->chans[i].channel->name)
842 694                         {
843 695                                 chanrec* Ptr = zombie->chans[i].channel;
844 696                                 WriteFrom(zombie->fd,zombie,'JOIN %s',Ptr->name);
845 697                                 if (Ptr->topicset)
846 698                                 {
847 699                                         WriteServ(zombie->fd,'332 %s %s :%s', zombie->nick, Ptr->name, Ptr->topic);
848 700                                         WriteServ(zombie->fd,'333 %s %s %s %d', zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
849 701                                 }
850 702                                 userlist(zombie,Ptr);
851 703                                 WriteServ(zombie->fd,'366 %s %s :End of /NAMES list.', zombie->nick, Ptr->name);
852 704 
853 705                         }
854 706                 }
855 707         }
856 708 
857 709 }
858 .fi
859 .SS "void Server::QuitUser (\fBuserrec\fP * user, std::string reason)\fC [virtual]\fP"
860 .PP
861 Forces a user to quit with the specified reason. To the user, it will appear as if they typed /QUIT themselves, except for the fact that this function may bypass the quit prefix specified in the config file.
862 .PP
863 WARNING!
864 .PP
865 Once you call this function, userrec* user will immediately become INVALID. You MUST NOT write to, or read from this pointer after calling the QuitUser method UNDER ANY CIRCUMSTANCES! The best course of action after calling this method is to immediately bail from your handler.Definition at line 474 of file modules.cpp.
866 .PP
867 .nf
868 475 {
869 476         kill_link(user,reason.c_str());
870 477 }
871 .fi
872 .SS "void Server::Send (int Socket, std::string s)\fC [virtual]\fP"
873 .PP
874 Sends a line of text down a TCP/IP socket. This method writes a line of text to an established socket, cutting it to 510 characters plus a carriage return and linefeed if required.Definition at line 504 of file modules.cpp.
875 .PP
876 .nf
877 505 {
878 506         Write(Socket,'%s',s.c_str());
879 507 }
880 .fi
881 .SS "void Server::SendChannel (\fBuserrec\fP * User, \fBchanrec\fP * Channel, std::string s, bool IncludeSender)\fC [virtual]\fP"
882 .PP
883 Sends text from a user to a channel (mulicast). This method writes a line of text to a channel, with the given user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in MODE (see RFC 1459).Definition at line 538 of file modules.cpp.
884 .PP
885 .nf
886 539 {
887 540         if (IncludeSender)
888 541         {
889 542                 WriteChannel(Channel,User,'%s',s.c_str());
890 543         }
891 544         else
892 545         {
893 546                 ChanExceptSender(Channel,User,'%s',s.c_str());
894 547         }
895 548 }
896 .fi
897 .SS "void Server::SendChannelServerNotice (std::string ServName, \fBchanrec\fP * Channel, std::string text)\fC [virtual]\fP"
898 .PP
899 Writes text to a channel, but from a server, including all. This can be used to send server notices to a group of users.Definition at line 533 of file modules.cpp.
900 .PP
901 .nf
902 534 {
903 535         WriteChannelWithServ((char*)ServName.c_str(), Channel, '%s', text.c_str());
904 536 }
905 .fi
906 .SS "void Server::SendCommon (\fBuserrec\fP * User, std::string text, bool IncludeSender)\fC [virtual]\fP"
907 .PP
908 Sends text from a user to one or more channels (mulicast). This method writes a line of text to all users which share a common channel with a given user, with the user's nick/ident/host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in NICK (see RFC 1459). Otherwise, it is only sent to the other recipients, as seen in QUIT.Definition at line 555 of file modules.cpp.
909 .PP
910 .nf
911 556 {
912 557         if (IncludeSender)
913 558         {
914 559                 WriteCommon(User,'%s',text.c_str());
915 560         }
916 561         else
917 562         {
918 563                 WriteCommonExcept(User,'%s',text.c_str());
919 564         }
920 565 }
921 .fi
922 .SS "void Server::SendFrom (int Socket, \fBuserrec\fP * User, std::string s)\fC [virtual]\fP"
923 .PP
924 Sends text from a user to a socket. This method writes a line of text to an established socket, with the given user's nick/ident /host combination prepended, as used in PRIVSG etc commands (see RFC 1459)Definition at line 514 of file modules.cpp.
925 .PP
926 .nf
927 515 {
928 516         WriteFrom(Socket,User,'%s',s.c_str());
929 517 }
930 .fi
931 .SS "void Server::SendMode (char ** parameters, int pcnt, \fBuserrec\fP * user)\fC [virtual]\fP"
932 .PP
933 Sends a servermode. you must format the parameters array with the target, modes and parameters for those modes.
934 .PP
935 For example:
936 .PP
937 char *modes[3];
938 .PP
939 modes[0] = ChannelName;
940 .PP
941 modes[1] = '+o';
942 .PP
943 modes[2] = user->nick;
944 .PP
945 Srv->SendMode(modes,3,user);
946 .PP
947 The modes will originate from the server where the command was issued, however responses (e.g. numerics) will be sent to the user you provide as the third parameter. You must be sure to get the number of parameters correct in the pcnt parameter otherwise you could leave your server in an unstable state!Definition at line 499 of file modules.cpp.
948 .PP
949 References server_mode().
950 .PP
951 .nf
952 500 {
953 501         server_mode(parameters,pcnt,user);
954 502 }
955 .fi
956 .SS "void Server::SendOpers (std::string s)\fC [virtual]\fP"
957 .PP
958 Sends text to all opers. This method sends a server notice to all opers with the usermode +s.Definition at line 429 of file modules.cpp.
959 .PP
960 .nf
961 430 {
962 431         WriteOpers('%s',s.c_str());
963 432 }
964 .fi
965 .SS "void Server::SendServ (int Socket, std::string s)\fC [virtual]\fP"
966 .PP
967 Sends text from the server to a socket. This method writes a line of text to an established socket, with the servername prepended as used by numerics (see RFC 1459)Definition at line 509 of file modules.cpp.
968 .PP
969 .nf
970 510 {
971 511         WriteServ(Socket,'%s',s.c_str());
972 512 }
973 .fi
974 .SS "void Server::SendTo (\fBuserrec\fP * Source, \fBuserrec\fP * Dest, std::string s)\fC [virtual]\fP"
975 .PP
976 Sends text from a user to another user. This method writes a line of text to a user, with a user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459) If you specify NULL as the source, then the data will originate from the local server, e.g. instead of:
977 .PP
978 :user!ident TEXT
979 .PP
980 The format will become:
981 .PP
982 :localserver TEXT
983 .PP
984 Which is useful for numerics and server notices to single users, etc.Definition at line 519 of file modules.cpp.
985 .PP
986 References connection::fd.
987 .PP
988 .nf
989 520 {
990 521         if (!Source)
991 522         {
992 523                 // if source is NULL, then the message originates from the local server
993 524                 Write(Dest->fd,':%s %s',this->GetServerName().c_str(),s.c_str());
994 525         }
995 526         else
996 527         {
997 528                 // otherwise it comes from the user specified
998 529                 WriteTo(Source,Dest,'%s',s.c_str());
999 530         }
1000 531 }
1001 .fi
1002 .SS "void Server::SendToModeMask (std::string modes, int flags, std::string text)\fC [virtual]\fP"
1003 .PP
1004 Sends to all users matching a mode mask You must specify one or more usermodes as the first parameter. These can be RFC specified modes such as +i, or module provided modes, including ones provided by your own module. In the second parameter you must place a flag value which indicates wether the modes you have given will be logically ANDed or OR'ed. You may use one of either WM_AND or WM_OR. for example, if you were to use:
1005 .PP
1006 Serv->SendToModeMask('xi', WM_OR, 'm00');
1007 .PP
1008 Then the text 'm00' will be sent to all users with EITHER mode x or i. Conversely if you used WM_AND, the user must have both modes set to receive the message.Definition at line 442 of file modules.cpp.
1009 .PP
1010 .nf
1011 443 {
1012 444         WriteMode(modes.c_str(),flags,'%s',text.c_str());
1013 445 }
1014 .fi
1015 .SS "void Server::SendWallops (\fBuserrec\fP * User, std::string text)\fC [virtual]\fP"
1016 .PP
1017 Sends a WALLOPS message. This method writes a WALLOPS message to all users with the +w flag, originating from the specified user.Definition at line 567 of file modules.cpp.
1018 .PP
1019 .nf
1020 568 {
1021 569         WriteWallOps(User,false,'%s',text.c_str());
1022 570 }
1023 .fi
1024 .SS "bool Server::UserToPseudo (\fBuserrec\fP * user, std::string message)\fC [virtual]\fP"
1025 .PP
1026 Remove a user's connection to the irc server, but leave their client in existence in the user hash. When you call this function, the user's file descriptor will be replaced with the value of FD_MAGIC_NUMBER and their old file descriptor will be closed. This idle client will remain until it is restored with a valid file descriptor, or is removed from IRC by an operator After this call, the pointer to user will be invalid.Definition at line 671 of file modules.cpp.
1027 .PP
1028 References userrec::ClearBuffer(), connection::fd, FD_MAGIC_NUMBER, connection::host, and userrec::ident.
1029 .PP
1030 .nf
1031 672 {
1032 673         unsigned int old_fd = user->fd;
1033 674         user->fd = FD_MAGIC_NUMBER;
1034 675         user->ClearBuffer();
1035 676         Write(old_fd,'ERROR :Closing link (%s@%s) [%s]',user->ident,user->host,message.c_str());
1036 677         shutdown(old_fd,2);
1037 678         close(old_fd);
1038 679 }
1039 .fi
1040
1041
1042 .SH "Author"
1043 .PP 
1044 Generated automatically by Doxygen for InspIRCd from the source code.