]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/Server.3
Documented new recvq and sendq stuff
[user/henk/code/inspircd.git] / docs / man / man3 / Server.3
1 .TH "Server" 3 "12 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 430 of file modules.cpp.
271 .PP
272 .nf
273 431 {
274 432 }
275 .fi
276 .SS "Server::~\fBServer\fP ()\fC [virtual]\fP"
277 .PP
278 Default destructor. Destroys a Server object.Definition at line 434 of file modules.cpp.
279 .PP
280 .nf
281 435 {
282 436 }
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 503 of file modules.cpp.
293 .PP
294 References createcommand().
295 .PP
296 .nf
297 504 {
298 505         createcommand(cmd,f,flags,minparams,source);
299 506 }
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 749 of file modules.cpp.
304 .PP
305 References add_eline(), and duration().
306 .PP
307 .nf
308 750 {
309 751         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
310 752 }
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 666 of file modules.cpp.
325 .PP
326 References DoAddExtendedMode(), ModeMakeList(), and MT_CHANNEL.
327 .PP
328 .nf
329 667 {
330 668         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
331 669         if (res)
332 670                 ModeMakeList(modechar);
333 671         return res;
334 672 }
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 638 of file modules.cpp.
339 .PP
340 References DEBUG, DoAddExtendedMode(), MT_CLIENT, and MT_SERVER.
341 .PP
342 .nf
343 639 {
344 640         if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
345 641         {
346 642                 if (type == MT_SERVER)
347 643                 {
348 644                         log(DEBUG,'*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion');
349 645                         return false;
350 646                 }
351 647                 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
352 648                 {
353 649                         log(DEBUG,'*** API ERROR *** Parameters on MT_CLIENT modes are not supported');
354 650                         return false;
355 651                 }
356 652                 if ((params_when_on>1) || (params_when_off>1))
357 653                 {
358 654                         log(DEBUG,'*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported');
359 655                         return false;
360 656                 }
361 657                 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
362 658         }
363 659         else
364 660         {
365 661                 log(DEBUG,'*** API ERROR *** Muppet modechar detected.');
366 662         }
367 663         return false;
368 664 }
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 729 of file modules.cpp.
373 .PP
374 References add_gline(), and duration().
375 .PP
376 .nf
377 730 {
378 731         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
379 732 }
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 744 of file modules.cpp.
384 .PP
385 References add_kline(), and duration().
386 .PP
387 .nf
388 745 {
389 746         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
390 747 }
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 734 of file modules.cpp.
395 .PP
396 References add_qline(), and duration().
397 .PP
398 .nf
399 735 {
400 736         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
401 737 }
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 739 of file modules.cpp.
406 .PP
407 References add_zline(), and duration().
408 .PP
409 .nf
410 740 {
411 741         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
412 742 }
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 779 of file modules.cpp.
417 .PP
418 References duration().
419 .PP
420 .nf
421 780 {
422 781         return duration(delta.c_str());
423 782 }
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 493 of file modules.cpp.
430 .PP
431 .nf
432 494 {
433 495         call_handler(commandname.c_str(),parameters,pcnt,user);
434 496 }
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 586 of file modules.cpp.
439 .PP
440 References ChangeName().
441 .PP
442 .nf
443 587 {
444 588         ChangeName(user,gecos.c_str());
445 589 }
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 581 of file modules.cpp.
450 .PP
451 References ChangeDisplayedHost().
452 .PP
453 .nf
454 582 {
455 583         ChangeDisplayedHost(user,host.c_str());
456 584 }
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 478 of file modules.cpp.
461 .PP
462 .nf
463 479 {
464 480         force_nickchange(user,nickname.c_str());
465 481 }
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 611 of file modules.cpp.
470 .PP
471 References cmode().
472 .PP
473 .nf
474 612 {
475 613         return cmode(User,Chan);
476 614 }
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 559 of file modules.cpp.
481 .PP
482 References common_channels().
483 .PP
484 .nf
485 560 {
486 561         return (common_channels(u1,u2) != 0);
487 562 }
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 674 of file modules.cpp.
492 .PP
493 .nf
494 675 {
495 676         return usercount(c);
496 677 }
497 .fi
498 .SS "bool Server::DelELine (std::string hostmask)\fC [virtual]\fP"
499 .PP
500 Deletes a local E-Line. Definition at line 774 of file modules.cpp.
501 .PP
502 References del_eline().
503 .PP
504 .nf
505 775 {
506 776         del_eline(hostmask.c_str());
507 777 }
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 754 of file modules.cpp.
512 .PP
513 References del_gline().
514 .PP
515 .nf
516 755 {
517 756         del_gline(hostmask.c_str());
518 757 }
519 .fi
520 .SS "bool Server::DelKLine (std::string hostmask)\fC [virtual]\fP"
521 .PP
522 Deletes a local K-Line. Definition at line 769 of file modules.cpp.
523 .PP
524 References del_kline().
525 .PP
526 .nf
527 770 {
528 771         del_kline(hostmask.c_str());
529 772 }
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 759 of file modules.cpp.
534 .PP
535 References del_qline().
536 .PP
537 .nf
538 760 {
539 761         del_qline(nickname.c_str());
540 762 }
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 764 of file modules.cpp.
545 .PP
546 References del_zline().
547 .PP
548 .nf
549 765 {
550 766         del_zline(ipaddr.c_str());
551 767 }
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 606 of file modules.cpp.
556 .PP
557 .nf
558 607 {
559 608         return FindChan(channel.c_str());
560 609 }
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 601 of file modules.cpp.
565 .PP
566 References fd_ref_table.
567 .PP
568 .nf
569 602 {
570 603         return (socket < 65536 ? fd_ref_table[socket] : NULL);
571 604 }
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 857 of file modules.cpp.
576 .PP
577 References MODCOUNT, module_names, and modules.
578 .PP
579 .nf
580 858 {
581 859         for (int i = 0; i <= MODCOUNT; i++)
582 860         {
583 861                 if (module_names[i] == name)
584 862                 {
585 863                         return modules[i];
586 864                 }
587 865         }
588 866         return NULL;
589 867 }
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 596 of file modules.cpp.
594 .PP
595 .nf
596 597 {
597 598         return Find(nick);
598 599 }
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 631 of file modules.cpp.
603 .PP
604 .nf
605 632 {
606 633         return Admin(getadminname(),getadminemail(),getadminnick());
607 634 }
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 626 of file modules.cpp.
612 .PP
613 .nf
614 627 {
615 628         return getnetworkname();
616 629 }
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 621 of file modules.cpp.
621 .PP
622 .nf
623 622 {
624 623         return getservername();
625 624 }
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 466 of file modules.cpp.
630 .PP
631 References chanuserlist, chanrec::GetUsers(), and list.
632 .PP
633 .nf
634 467 {
635 468         chanuserlist userl;
636 469         userl.clear();
637 470         std::vector<char*> *list = chan->GetUsers();
638 471         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
639 472         {
640 473                 char* o = *i;
641 474                 userl.push_back((userrec*)o);
642 475         }
643 476         return userl;
644 477 }
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 591 of file modules.cpp.
649 .PP
650 References isnick().
651 .PP
652 .nf
653 592 {
654 593         return (isnick(nick.c_str()) != 0);
655 594 }
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 616 of file modules.cpp.
660 .PP
661 References has_channel().
662 .PP
663 .nf
664 617 {
665 618         return has_channel(User,Chan);
666 619 }
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 488 of file modules.cpp.
671 .PP
672 References is_uline().
673 .PP
674 .nf
675 489 {
676 490         return is_uline(server.c_str());
677 491 }
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 784 of file modules.cpp.
682 .PP
683 .nf
684 785 {
685 786         const char* dest = mask.c_str();
686 787         if (strchr(dest,'!')==0)
687 788                 return false;
688 789         if (strchr(dest,'@')==0)
689 790                 return false;
690 791         for (int i = 0; i < strlen(dest); i++)
691 792                 if (dest[i] < 32)
692 793                         return false;
693 794         for (int i = 0; i < strlen(dest); i++)
694 795                 if (dest[i] > 126)
695 796                         return false;
696 797         int c = 0;
697 798         for (int i = 0; i < strlen(dest); i++)
698 799                 if (dest[i] == '!')
699 800                         c++;
700 801         if (c>1)
701 802                 return false;
702 803         c = 0;
703 804         for (int i = 0; i < strlen(dest); i++)
704 805                 if (dest[i] == '@')
705 806                         c++;
706 807         if (c>1)
707 808                 return false;
708 809 
709 810         return true;
710 811 }
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 456 of file modules.cpp.
715 .PP
716 .nf
717 457 {
718 458         return add_channel(user,cname.c_str(),key.c_str(),false);
719 459 }
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 498 of file modules.cpp.
724 .PP
725 .nf
726 499 {
727 500         log(level,'%s',s.c_str());
728 501 }
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 443 of file modules.cpp.
733 .PP
734 .nf
735 444 {
736 445         char literal[MAXBUF],pattern[MAXBUF];
737 446         strlcpy(literal,sliteral.c_str(),MAXBUF);
738 447         strlcpy(pattern,spattern.c_str(),MAXBUF);
739 448         return match(literal,pattern);
740 449 }
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 839 of file modules.cpp.
745 .PP
746 .nf
747 840 {
748 841         if (c)
749 842         {
750 843                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
751 844         }
752 845         else return false;
753 846 }
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 848 of file modules.cpp.
758 .PP
759 .nf
760 849 {
761 850         if (u)
762 851         {
763 852                 return CommonOnThisServer(u,(char*)servername.c_str());
764 853         }
765 854         else return false;
766 855 }
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 813 of file modules.cpp.
771 .PP
772 .nf
773 814 {
774 815         NetSendToAll((char*)text.c_str());
775 816 }
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 824 of file modules.cpp.
780 .PP
781 .nf
782 825 {
783 826         NetSendToAllAlive((char*)text.c_str());
784 827 }
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 834 of file modules.cpp.
789 .PP
790 .nf
791 835 {
792 836         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
793 837 }
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 818 of file modules.cpp.
798 .PP
799 .nf
800 819 {
801 820         if (user)
802 821                 NetSendToCommon(user,(char*)text.c_str());
803 822 }
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 829 of file modules.cpp.
808 .PP
809 .nf
810 830 {
811 831         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
812 832 }
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 461 of file modules.cpp.
817 .PP
818 .nf
819 462 {
820 463         return del_channel(user,cname.c_str(),reason.c_str(),false);
821 464 }
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 699 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 700 {
831 701         zombie->fd = alive->fd;
832 702         alive->fd = FD_MAGIC_NUMBER;
833 703         alive->ClearBuffer();
834 704         Write(zombie->fd,':%s!%s@%s NICK %s',alive->nick,alive->ident,alive->host,zombie->nick);
835 705         kill_link(alive,message.c_str());
836 706         fd_ref_table[zombie->fd] = zombie;
837 707         for (int i = 0; i != MAXCHANS; i++)
838 708         {
839 709                 if (zombie->chans[i].channel != NULL)
840 710                 {
841 711                         if (zombie->chans[i].channel->name)
842 712                         {
843 713                                 chanrec* Ptr = zombie->chans[i].channel;
844 714                                 WriteFrom(zombie->fd,zombie,'JOIN %s',Ptr->name);
845 715                                 if (Ptr->topicset)
846 716                                 {
847 717                                         WriteServ(zombie->fd,'332 %s %s :%s', zombie->nick, Ptr->name, Ptr->topic);
848 718                                         WriteServ(zombie->fd,'333 %s %s %s %d', zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
849 719                                 }
850 720                                 userlist(zombie,Ptr);
851 721                                 WriteServ(zombie->fd,'366 %s %s :End of /NAMES list.', zombie->nick, Ptr->name);
852 722 
853 723                         }
854 724                 }
855 725         }
856 726 
857 727 }
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 483 of file modules.cpp.
866 .PP
867 .nf
868 484 {
869 485         kill_link(user,reason.c_str());
870 486 }
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 513 of file modules.cpp.
875 .PP
876 .nf
877 514 {
878 515         Write(Socket,'%s',s.c_str());
879 516 }
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 547 of file modules.cpp.
884 .PP
885 .nf
886 548 {
887 549         if (IncludeSender)
888 550         {
889 551                 WriteChannel(Channel,User,'%s',s.c_str());
890 552         }
891 553         else
892 554         {
893 555                 ChanExceptSender(Channel,User,'%s',s.c_str());
894 556         }
895 557 }
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 542 of file modules.cpp.
900 .PP
901 .nf
902 543 {
903 544         WriteChannelWithServ((char*)ServName.c_str(), Channel, '%s', text.c_str());
904 545 }
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 564 of file modules.cpp.
909 .PP
910 .nf
911 565 {
912 566         if (IncludeSender)
913 567         {
914 568                 WriteCommon(User,'%s',text.c_str());
915 569         }
916 570         else
917 571         {
918 572                 WriteCommonExcept(User,'%s',text.c_str());
919 573         }
920 574 }
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 523 of file modules.cpp.
925 .PP
926 .nf
927 524 {
928 525         WriteFrom(Socket,User,'%s',s.c_str());
929 526 }
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 508 of file modules.cpp.
948 .PP
949 References server_mode().
950 .PP
951 .nf
952 509 {
953 510         server_mode(parameters,pcnt,user);
954 511 }
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 438 of file modules.cpp.
959 .PP
960 .nf
961 439 {
962 440         WriteOpers('%s',s.c_str());
963 441 }
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 518 of file modules.cpp.
968 .PP
969 .nf
970 519 {
971 520         WriteServ(Socket,'%s',s.c_str());
972 521 }
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 528 of file modules.cpp.
985 .PP
986 References connection::fd.
987 .PP
988 .nf
989 529 {
990 530         if (!Source)
991 531         {
992 532                 // if source is NULL, then the message originates from the local server
993 533                 Write(Dest->fd,':%s %s',this->GetServerName().c_str(),s.c_str());
994 534         }
995 535         else
996 536         {
997 537                 // otherwise it comes from the user specified
998 538                 WriteTo(Source,Dest,'%s',s.c_str());
999 539         }
1000 540 }
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 451 of file modules.cpp.
1009 .PP
1010 .nf
1011 452 {
1012 453         WriteMode(modes.c_str(),flags,'%s',text.c_str());
1013 454 }
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 576 of file modules.cpp.
1018 .PP
1019 .nf
1020 577 {
1021 578         WriteWallOps(User,false,'%s',text.c_str());
1022 579 }
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 680 of file modules.cpp.
1027 .PP
1028 References userrec::ClearBuffer(), DEBUG, connection::fd, FD_MAGIC_NUMBER, connection::host, and userrec::ident.
1029 .PP
1030 .nf
1031 681 {
1032 682         unsigned int old_fd = user->fd;
1033 683         user->fd = FD_MAGIC_NUMBER;
1034 684         user->ClearBuffer();
1035 685         Write(old_fd,'ERROR :Closing link (%s@%s) [%s]',user->ident,user->host,message.c_str());
1036 686 #ifdef USE_KQUEUE
1037 687         struct kevent ke;
1038 688         EV_SET(&ke, old_fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
1039 689         int i = kevent(kq, &ke, 1, 0, 0, NULL);
1040 690         if (i == -1)
1041 691         {
1042 692                 log(DEBUG,'kqueue: Failed to remove user from queue!');
1043 693         }
1044 694 #endif
1045 695         shutdown(old_fd,2);
1046 696         close(old_fd);
1047 697 }
1048 .fi
1049
1050
1051 .SH "Author"
1052 .PP 
1053 Generated automatically by Doxygen for InspIRCd from the source code.