Erebot  latest
A modular IRC bot for PHP 5.3+
Ultimate.php
1 <?php
2 /*
3  This file is part of Erebot, a modular IRC bot written in PHP.
4 
5  Copyright © 2010 François Poirotte
6 
7  Erebot is free software: you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation, either version 3 of the License, or
10  (at your option) any later version.
11 
12  Erebot is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with Erebot. If not, see <http://www.gnu.org/licenses/>.
19 */
20 
21 namespace Erebot\NumericProfile;
22 
28 {
30  const RPL_WELCOME = 1;
31 
33  const RPL_YOURHOST = 2;
34 
36  const RPL_CREATED = 3;
37 
39  const RPL_MYINFO = 4;
40 
42  const RPL_PROTOCTL = 5;
43 
45  const RPL_MAP = 6;
46 
48  const RPL_MAPEND = 7;
49 
51  const RPL_TRACELINK = 200;
52 
54  const RPL_TRACECONNECTING = 201;
55 
57  const RPL_TRACEHANDSHAKE = 202;
58 
60  const RPL_TRACEUNKNOWN = 203;
61 
63  const RPL_TRACEOPERATOR = 204;
64 
66  const RPL_TRACEUSER = 205;
67 
69  const RPL_TRACESERVER = 206;
70 
72  const RPL_TRACENEWTYPE = 208;
73 
75  const RPL_TRACECLASS = 209;
76 
78  const RPL_STATSLINKINFO = 211;
79 
81  const RPL_STATSCOMMANDS = 212;
82 
84  const RPL_STATSCLINE = 213;
85 
87  const RPL_STATSNLINE = 214;
88 
90  const RPL_STATSILINE = 215;
91 
93  const RPL_STATSKLINE = 216;
94 
96  const RPL_STATSQLINE = 217;
97 
99  const RPL_STATSYLINE = 218;
100 
102  const RPL_ENDOFSTATS = 219;
103 
105  const RPL_NMODEIS = 220;
106 
108  const RPL_UMODEIS = 221;
109 
111  const RPL_STATSBLINE = 222;
112 
114  const RPL_STATSELINE = 223;
115 
117  const RPL_STATSFLINE = 224;
118 
120  const RPL_STATSZLINE = 225;
121 
123  const RPL_STATSCOUNT = 226;
124 
126  const RPL_STATSGLINE = 227;
127 
129  const RPL_SERVLIST = 234;
130 
132  const RPL_SERVLISTEND = 235;
133 
135  const RPL_STATSLLINE = 241;
136 
138  const RPL_STATSUPTIME = 242;
139 
141  const RPL_STATSOLINE = 243;
142 
144  const RPL_STATSHLINE = 244;
145 
147  const RPL_STATSSLINE = 245;
148 
150  const RPL_STATSULINE = 246;
151 
153  const RPL_STATSDEBUG = 249;
154 
156  const RPL_LUSERCLIENT = 251;
157 
159  const RPL_LUSEROP = 252;
160 
162  const RPL_LUSERUNKNOWN = 253;
163 
165  const RPL_LUSERCHANNELS = 254;
166 
168  const RPL_LUSERME = 255;
169 
171  const RPL_ADMINME = 256;
172 
174  const RPL_ADMINLOC1 = 257;
175 
177  const RPL_ADMINLOC2 = 258;
178 
180  const RPL_ADMINEMAIL = 259;
181 
183  const RPL_TRACELOG = 261;
184 
186  const RPL_ENDOFTRACE = 262;
187 
189  const RPL_LOAD2HI = 263;
190 
192  const RPL_SILELIST = 271;
193 
195  const RPL_ENDOFSILELIST = 272;
196 
198  const RPL_USINGSSL = 275;
199 
201  const RPL_NONE = 300;
202 
204  const RPL_AWAY = 301;
205 
207  const RPL_USERHOST = 302;
208 
210  const RPL_ISON = 303;
211 
213  const RPL_TEXT = 304;
214 
216  const RPL_UNAWAY = 305;
217 
219  const RPL_NOWAWAY = 306;
220 
222  const RPL_WHOISREGNICK = 307;
223 
225  const RPL_WHOISADMIN = 308;
226 
228  const RPL_WHOISSADMIN = 309;
229 
231  const RPL_WHOISSVCMSG = 310;
232 
234  const RPL_WHOISUSER = 311;
235 
237  const RPL_WHOISSERVER = 312;
238 
240  const RPL_WHOISOPERATOR = 313;
241 
243  const RPL_WHOWASUSER = 314;
244 
246  const RPL_ENDOFWHOWAS = 369;
247 
249  const RPL_WHOISCHANOP = 316;
250 
252  const RPL_WHOISIDLE = 317;
253 
255  const RPL_ENDOFWHOIS = 318;
256 
258  const RPL_WHOISCHANNELS = 319;
259 
261  const RPL_LISTSTART = 321;
262 
264  const RPL_LIST = 322;
265 
267  const RPL_LISTEND = 323;
268 
270  const RPL_CHANNELMODEIS = 324;
271 
273  const RPL_CREATIONTIME = 329;
274 
276  const RPL_NOTOPIC = 331;
277 
279  const RPL_TOPIC = 332;
280 
282  const RPL_TOPICWHOTIME = 333;
283 
285  const RPL_COMMANDSYNTAX = 334;
286 
288  const RPL_INVITING = 341;
289 
291  const RPL_SUMMONING = 342;
292 
294  const RPL_EXEMPTLIST = 348;
295 
297  const RPL_ENDOFEXEMPTLIST = 349;
298 
300  const RPL_VERSION = 351;
301 
303  const RPL_WHOREPLY = 352;
304 
306  const RPL_ENDOFWHO = 315;
307 
309  const RPL_NAMREPLY = 353;
310 
312  const RPL_ENDOFNAMES = 366;
313 
315  const RPL_KILLDONE = 361;
316 
318  const RPL_CLOSING = 362;
319 
321  const RPL_CLOSEEND = 363;
322 
324  const RPL_LINKS = 364;
325 
327  const RPL_ENDOFLINKS = 365;
328 
330  const RPL_BANLIST = 367;
331 
333  const RPL_ENDOFBANLIST = 368;
334 
336  const RPL_INFO = 371;
337 
339  const RPL_MOTD = 372;
340 
342  const RPL_INFOSTART = 373;
343 
345  const RPL_ENDOFINFO = 374;
346 
348  const RPL_MOTDSTART = 375;
349 
351  const RPL_ENDOFMOTD = 376;
352 
354  const RPL_YOUREOPER = 381;
355 
357  const RPL_REHASHING = 382;
358 
360  const RPL_MYPORTIS = 384;
361 
363  const RPL_NOTOPERANYMORE = 385;
364 
366  const RPL_TIME = 391;
367 
369  const RPL_USERSSTART = 392;
370 
372  const RPL_USERS = 393;
373 
375  const RPL_ENDOFUSERS = 394;
376 
378  const RPL_NOUSERS = 395;
379 
381  const ERR_NOSUCHNICK = 401;
382 
384  const ERR_NOSUCHSERVER = 402;
385 
387  const ERR_NOSUCHCHANNEL = 403;
388 
390  const ERR_CANNOTSENDTOCHAN = 404;
391 
393  const ERR_TOOMANYCHANNELS = 405;
394 
396  const ERR_WASNOSUCHNICK = 406;
397 
399  const ERR_TOOMANYTARGETS = 407;
400 
402  const ERR_NOCOLORSONCHAN = 408;
403 
405  const ERR_NOORIGIN = 409;
406 
408  const ERR_NORECIPIENT = 411;
409 
411  const ERR_NOTEXTTOSEND = 412;
412 
414  const ERR_NOTOPLEVEL = 413;
415 
417  const ERR_WILDTOPLEVEL = 414;
418 
420  const ERR_UNKNOWNCOMMAND = 421;
421 
423  const ERR_NOMOTD = 422;
424 
426  const ERR_NOADMININFO = 423;
427 
429  const ERR_FILEERROR = 424;
430 
432  const ERR_TOOMANYAWAY = 429;
433 
435  const ERR_NONICKNAMEGIVEN = 431;
436 
438  const ERR_ERRONEUSNICKNAME = 432;
439 
441  const ERR_NICKNAMEINUSE = 433;
442 
444  const ERR_BANONCHAN = 435;
445 
447  const ERR_NICKCOLLISION = 436;
448 
450  const ERR_BANNICKCHANGE = 437;
451 
453  const ERR_TARGETTOFAST = 439;
454 
456  const ERR_SERVICESDOWN = 440;
457 
459  const ERR_USERNOTINCHANNEL = 441;
460 
462  const ERR_NOTONCHANNEL = 442;
463 
465  const ERR_USERONCHANNEL = 443;
466 
468  const ERR_NOLOGIN = 444;
469 
471  const ERR_SUMMONDISABLED = 445;
472 
474  const ERR_USERSDISABLED = 446;
475 
477  const ERR_NOTREGISTERED = 451;
478 
480  const ERR_NEEDMOREPARAMS = 461;
481 
483  const ERR_ALREADYREGISTRED = 462;
484 
486  const ERR_NOPERMFORHOST = 463;
487 
489  const ERR_PASSWDMISMATCH = 464;
490 
492  const ERR_YOUREBANNEDCREEP = 465;
493 
495  const ERR_YOUWILLBEBANNED = 466;
496 
498  const ERR_KEYSET = 467;
499 
502 
504  const ERR_CHANNELISFULL = 471;
505 
507  const ERR_UNKNOWNMODE = 472;
508 
510  const ERR_INVITEONLYCHAN = 473;
511 
513  const ERR_BANNEDFROMCHAN = 474;
514 
516  const ERR_BADCHANNELKEY = 475;
517 
519  const ERR_BADCHANMASK = 476;
520 
522  const ERR_NEEDREGGEDNICK = 477;
523 
525  const ERR_BANLISTFULL = 478;
526 
528  const ERR_BADCHANNAME = 479;
529 
531  const ERR_SERVERONLY = 480;
532 
534  const ERR_NOPRIVILEGES = 481;
535 
537  const ERR_CHANOPRIVSNEEDED = 482;
538 
540  const ERR_CANTKILLSERVER = 483;
541 
543  const ERR_DESYNC = 484;
544 
546  const ERR_CHANBANREASON = 485;
547 
549  const ERR_SSLCLIENTSONLY = 486;
550 
552  const ERR_NONONREG = 487;
553 
555  const ERR_NOTSSLCLIENT = 488;
556 
558  const ERR_NOOPERHOST = 491;
559 
561  const ERR_UMODEUNKNOWNFLAG = 501;
562 
564  const ERR_USERSDONTMATCH = 502;
565 
567  const ERR_GHOSTEDCLIENT = 503;
568 
570  const ERR_LAST_ERR_MSG = 504;
571 
573  const ERR_SILELISTFULL = 511;
574 
576  const ERR_TOOMANYWATCH = 512;
577 
579  const ERR_TOOMANYDCC = 514;
580 
582  const ERR_LISTSYNTAX = 521;
583 
585  const ERR_WHOSYNTAX = 522;
586 
588  const ERR_WHOLIMEXCEED = 523;
589 
591  const RPL_LOGON = 600;
592 
594  const RPL_LOGOFF = 601;
595 
597  const RPL_WATCHOFF = 602;
598 
600  const RPL_WATCHSTAT = 603;
601 
603  const RPL_NOWON = 604;
604 
606  const RPL_NOWOFF = 605;
607 
609  const RPL_WATCHLIST = 606;
610 
612  const RPL_ENDOFWATCHLIST = 607;
613 
615  const RPL_WHOISSERVICES = 613;
616 
618  const RPL_WHOISHELPOP = 614;
619 
621  const RPL_WHOISMODES = 615;
622 
624  const RPL_WHOISHOST = 616;
625 
627  const RPL_DCCSTATUS = 617;
628 
630  const RPL_DCCLIST = 618;
631 
633  const RPL_ENDOFDCCLIST = 619;
634 
636  const RPL_DCCINFO = 620;
637 
639  const RPL_SETTINGS = 630;
640 
642  const RPL_ENDOFSETTINGS = 631;
643 
645  const RPL_IRCOPS = 632;
646 
648  const RPL_ENDOFIRCOPS = 633;
649 
651  const RPL_OPERMOTDSTART = 640;
652 
654  const RPL_OPERMOTD = 641;
655 
657  const RPL_ENDOFOPERMOTD = 642;
658 
660  const RPL_RULESSTART = 644;
661 
663  const RPL_RULES = 645;
664 
666  const RPL_ENDOFRULES = 646;
667 
669  const RPL_MAPMORE = 650;
670 
672  const RPL_STATSVLINE = 660;
673 
675  const RPL_WHOHOST = 671;
676 
678  const ERR_EXEMPTLISTFULL = 700;
679 
681  const ERR_NORULES = 710;
682 
684  const ERR_NOOPERMOTD = 711;
685 
687  const ERR_NUMERIC_ERR = 999;
688 }
const ERR_FILEERROR
Generic error message used to report a failed file operation during the processing of a message...
Definition: Ultimate.php:429
const RPL_LISTEND
Sent in response to a LIST command, marks the end of the server&#39;s response.
Definition: Ultimate.php:267
const ERR_WASNOSUCHNICK
Returned by WHOWAS to indicate there is no history information for that nickname. ...
Definition: Ultimate.php:396
const RPL_NOWAWAY
Sent when the client sets an AWAY message.
Definition: Ultimate.php:219
const ERR_NICKNAMEINUSE
Returned when a NICK message is processed that results in an attempt to change to a currently existin...
Definition: Ultimate.php:441
const ERR_NOOPERHOST
If a client sends an OPER message and the server has not been configured to allow connections from th...
Definition: Ultimate.php:558
const RPL_STATSOLINE
This numeric is used for every entry configured through O-lines (oper).
Definition: Ultimate.php:141
const RPL_YOURHOST
Gives the name/version of the server we&#39;re connected to.
Definition: Ultimate.php:33
const RPL_TRACECONNECTING
Used when tracing connections which have not been fully established and are still attempting to conne...
Definition: Ultimate.php:54
const RPL_WHOREPLY
Sent back for every user that matches the criteria for the current WHO command.
Definition: Ultimate.php:303
const RPL_NONE
Dummy reply number. Not used.
Definition: Ultimate.php:201
const RPL_WHOISIDLE
Sent in response to a WHOIS, indicating how much time the target user has spent idle.
Definition: Ultimate.php:252
const ERR_TOOMANYWATCH
The server will send this numeric back to you if you try to add someone to your watch list and the li...
Definition: Ultimate.php:576
const RPL_WHOISCHANOP
Redundant and not needed but reserved.
Definition: Ultimate.php:249
const RPL_STATSYLINE
This numeric is used for every entry configured through Y-lines (class).
Definition: Ultimate.php:99
const RPL_STATSBLINE
This numeric is used for every entry configured through B-lines (bounces).
Definition: Ultimate.php:111
const RPL_LUSERME
In processing an LUSERS message, the server sends this numeric to indicate how many clients and serve...
Definition: Ultimate.php:168
const RPL_TRACECLASS
Used when tracing connections to give information on a class of connections.
Definition: Ultimate.php:75
const RPL_TRACELINK
RPL_TRACELINK is sent by any server which handles a TRACE message and has to pass it on to another se...
Definition: Ultimate.php:51
const ERR_NOPRIVILEGES
Any command requiring operator privileges to operate will return this error to indicate the attempt w...
Definition: Ultimate.php:534
const ERR_TOOMANYDCC
This numeric is sent to you if you try to add someone to your DCC allow list and the list is already ...
Definition: Ultimate.php:579
const ERR_CANTKILLSERVER
Any attempts to use the KILL command on a server will be refused and this error returned directly to ...
Definition: Ultimate.php:540
Abstract class that serves as a base to create a numeric profile for an IRCd server.
Definition: Base.php:33
const RPL_ENDOFLINKS
Marks the end of the links for this server.
Definition: Ultimate.php:327
const RPL_ENDOFEXEMPTLIST
Alias for Erebot_Interface_Numerics::RPL_ENDOFEXCEPTLIST.
Definition: Ultimate.php:297
const ERR_ALREADYREGISTRED
Returned by the server to any link which tries to change part of the registered details (such as pass...
Definition: Ultimate.php:483
const ERR_NOADMININFO
Returned by a server in response to an ADMIN message when there is an error in finding the appropriat...
Definition: Ultimate.php:426
const RPL_LUSEROP
Sent in response to a LUSERS message to indicate how many IRC operators are currently connected...
Definition: Ultimate.php:159
const RPL_MAPEND
Marks the end of the network&#39;s map.
Definition: Ultimate.php:48
const RPL_YOUREOPER
RPL_YOUREOPER is sent back to a client which has just successfully issued an OPER message and gained ...
Definition: Ultimate.php:354
const RPL_TIME
When replying to the TIME message, a server MUST send the reply using the RPL_TIME format below...
Definition: Ultimate.php:366
const ERR_NOSUCHNICK
Used to indicate the nickname parameter supplied to a command is currently unused.
Definition: Ultimate.php:381
const ERR_SUMMONDISABLED
Returned by any server which does not support the SUMMON command, either because it was not implement...
Definition: Ultimate.php:471
const RPL_UNAWAY
Sent went the client removes an AWAY message.
Definition: Ultimate.php:216
const RPL_NOWOFF
Sent after a nick has been added to your watch list and that person is currently offline.
Definition: Ultimate.php:606
const ERR_NOTOPLEVEL
Returned when an invalid use of "PRIVMSG $<server>" or "PRIVMSG #<host>" is attempted (when it doesn&#39;...
Definition: Ultimate.php:414
const ERR_PASSWDMISMATCH
Returned to indicate a failed attempt at registering a connection for which a password was required a...
Definition: Ultimate.php:489
const RPL_ENDOFWHOIS
The RPL_ENDOFWHOIS reply is used to mark the end of processing a WHOIS message.
Definition: Ultimate.php:255
const RPL_RULES
This numeric is sent to you for every rule in use on this server.
Definition: Ultimate.php:663
const RPL_NAMREPLY
This numeric is used in response to a NAMES command or upon joining a channel and contains the nickna...
Definition: Ultimate.php:309
const RPL_DCCSTATUS
This numeric is sent back to you after every command to add or remove some user from your DCC allow l...
Definition: Ultimate.php:627
const ERR_YOUWILLBEBANNED
Sent by a server to a user to inform him/her that access to the server will soon be denied...
Definition: Ultimate.php:495
const ERR_TARGETTOFAST
Alias for Erebot_Interface_Numerics::ERR_TARGETTOOFAST.
Definition: Ultimate.php:453
const RPL_TOPIC
Sent when joining a channel or issuing a TOPIC command; contains the current topic.
Definition: Ultimate.php:279
const ERR_NUMERIC_ERR
Sent when an invalid numeric is received.
Definition: Ultimate.php:687
const RPL_ADMINLOC2
Returned in response to an ADMIN message, usually giving information on the institution hosting the s...
Definition: Ultimate.php:177
const ERR_NOSUCHSERVER
Used to indicate the server name given currently doesn&#39;t exist.
Definition: Ultimate.php:384
const ERR_NICKCOLLISION
Returned by a server to a client when it detects a nickname collision (registered of a NICK that alre...
Definition: Ultimate.php:447
const ERR_LAST_ERR_MSG
Alias for Erebot_Interface_Numerics::ERR_NUMERIC_ERR.
Definition: Ultimate.php:570
const RPL_LOGOFF
Sent when someone on your watch list logs offline.
Definition: Ultimate.php:594
const RPL_ENDOFTRACE
Alias for Erebot_Interface_Numerics::RPL_TRACEEND.
Definition: Ultimate.php:186
const ERR_CHANNELISFULL
Returned when trying to JOIN a channel for which a limit has been set and reached.
Definition: Ultimate.php:504
const RPL_TRACEHANDSHAKE
Used when tracing connections which have not been fully established and are in the process of complet...
Definition: Ultimate.php:57
const ERR_NOTREGISTERED
Returned by the server to indicate that the client must be registered before the server will allow it...
Definition: Ultimate.php:477
const ERR_TOOMANYTARGETS
Used when several targets match the given parameters for a command.
Definition: Ultimate.php:399
const RPL_LUSERCLIENT
In processing an LUSERS message, the server sends this numeric to indicate how many clients and serve...
Definition: Ultimate.php:156
const RPL_SERVLISTEND
Marks the end of the list of services, sent in response to a SERVLIST message.
Definition: Ultimate.php:132
const RPL_WHOISUSER
Sent in response to a WHOIS, giving a few information on the target user.
Definition: Ultimate.php:234
const RPL_ENDOFSTATS
Marks the end of the STATS report.
Definition: Ultimate.php:102
const RPL_SERVLIST
When listing services in reply to a SERVLIST message, a separate RPL_SERVLIST is sent for each servic...
Definition: Ultimate.php:129
const RPL_ENDOFWHOWAS
Sent in response to a WHOWAS, marks the end of the WHOWAS message processing.
Definition: Ultimate.php:246
const RPL_TRACENEWTYPE
RPL_TRACENEWTYPE is to be used for any connection which does not fit in the other categories but is b...
Definition: Ultimate.php:72
const ERR_TOOMANYAWAY
This numeric is sent by the IRC server when two many AWAY commands have been issued by the user in a ...
Definition: Ultimate.php:432
const RPL_TRACEUSER
Used when tracing connections to give information on (non-operator) IRC clients.
Definition: Ultimate.php:66
const RPL_TRACEUNKNOWN
Used when tracing connections which have not been fully established and are unknown.
Definition: Ultimate.php:60
const RPL_STATSLLINE
This numeric is used for every entry configured through L-lines (leaf).
Definition: Ultimate.php:135
const RPL_LIST
Sent in response to a LIST command, contains the actual response data.
Definition: Ultimate.php:264
const RPL_LOGON
Sent when someone on your watch list logs online.
Definition: Ultimate.php:591
const ERR_USERSDISABLED
Returned by any server which does not support the USERS command, either because it was not implemente...
Definition: Ultimate.php:474
const RPL_RULESSTART
Alias for Erebot_Interface_Numerics::RPL_RULESTART.
Definition: Ultimate.php:660
const RPL_DCCLIST
This numeric is sent in response to a DCCALLOW LIST command for every person that is currently presen...
Definition: Ultimate.php:630
const RPL_MYINFO
Supported user and channel modes.
Definition: Ultimate.php:39
const ERR_NOTEXTTOSEND
Sent when a command did not receive any text when it was expecting some.
Definition: Ultimate.php:411
const RPL_ISON
Reply format used by ISON to list replies to the query list.
Definition: Ultimate.php:210
const ERR_ERRONEUSNICKNAME
Returned after receiving a NICK message which contains characters which do not fall in the defined se...
Definition: Ultimate.php:438
const RPL_USERHOST
Reply format used by USERHOST to list replies to the query list.
Definition: Ultimate.php:207
const RPL_STATSUPTIME
Reports the server uptime.
Definition: Ultimate.php:138
const ERR_USERNOTINCHANNEL
Returned by the server to indicate that the target user of the command is not on the given channel...
Definition: Ultimate.php:459
const ERR_BADCHANNELKEY
Returned when trying to JOIN a channel for which a key was set and was either not given or incorrect...
Definition: Ultimate.php:516
const ERR_NORULES
Sent to indicate that the server does not have any rules defined.
Definition: Ultimate.php:681
const ERR_CANNOTSENDTOCHAN
Sent by the server when attempting to send a PRIVMSG on a channel when you&#39;re not allowed to do so...
Definition: Ultimate.php:390
const ERR_YOUREBANNEDCREEP
Returned after an attempt to connect and register yourself with a server which has been setup to expl...
Definition: Ultimate.php:492
const ERR_NOSUCHCHANNEL
Used to indicate the given channel name is invalid.
Definition: Ultimate.php:387
const RPL_WHOISCHANNELS
Sent in response to a WHOIS, listing the public channels the target user is on.
Definition: Ultimate.php:258
const ERR_UMODEUNKNOWNFLAG
Returned by the server to indicate that a MODE message was sent with a nickname parameter and that th...
Definition: Ultimate.php:561
const RPL_AWAY
RPL_AWAY is sent to any client sending a PRIVMSG to a client which is away.
Definition: Ultimate.php:204
const RPL_ENDOFWATCHLIST
Marks the end of a WATCH command.
Definition: Ultimate.php:612
const RPL_ADMINEMAIL
Returned as the last numeric in response to an ADMIN message, giving an email where the server&#39;s admi...
Definition: Ultimate.php:180
Numeric profile for UltimateIRCd-based IRC servers.
Definition: Ultimate.php:27
const ERR_USERONCHANNEL
Returned when a client tries to invite a user to a channel they are already on.
Definition: Ultimate.php:465
const RPL_ADMINLOC1
Returned in response to an ADMIN message, usually giving information on the city, state and country w...
Definition: Ultimate.php:174
const RPL_CHANNELMODEIS
Sent in response to a MODE command or upon joining an IRC channel, containing the modes that are in e...
Definition: Ultimate.php:270
const RPL_STATSCOMMANDS
Reports statistics on commands usage.
Definition: Ultimate.php:81
const ERR_NOMOTD
Server&#39;s MOTD file could not be opened by the server.
Definition: Ultimate.php:423
const RPL_WATCHSTAT
Displays how many people are on your watch list and how many have added you to their watch list...
Definition: Ultimate.php:600
const RPL_INVITING
Returned by the server to indicate that the attempted INVITE message was successful and is being pass...
Definition: Ultimate.php:288
const RPL_WELCOME
First numeric sent to a client after its connection (welcome message).
Definition: Ultimate.php:30
const RPL_LISTSTART
Obsolete numeric used to mark the beginning of a reply to a LIST command.
Definition: Ultimate.php:261
const ERR_NORECIPIENT
Used to indicate a recipient was expected for the given command.
Definition: Ultimate.php:408
const ERR_NOTONCHANNEL
Returned by the server whenever a client tries to perform a channel affecting command for which the c...
Definition: Ultimate.php:462
const RPL_REHASHING
If the REHASH option is used and an operator sends a REHASH message, an RPL_REHASHING is sent back to...
Definition: Ultimate.php:357
const RPL_ADMINME
Returned as the first numeric in response to an ADMIN message.
Definition: Ultimate.php:171
const RPL_LOAD2HI
Mostly an alias for Erebot_Interface_Numerics::RPL_TRYAGAIN, except that the text is worded slightly ...
Definition: Ultimate.php:189
const RPL_STATSILINE
This numeric is used for every entry configured through I-lines (allow).
Definition: Ultimate.php:90
const RPL_WHOWASUSER
Sent in response to a WHOWAS, giving information on the target user.
Definition: Ultimate.php:243
const RPL_STATSCLINE
This numeric is used for every entry configured through C-lines (connect).
Definition: Ultimate.php:84
const RPL_STATSQLINE
This numeric is used for every entry configured through Q-lines (ban nick).
Definition: Ultimate.php:96
const ERR_UNKNOWNMODE
Returned when trying to set a mode which is not recognized by the server on a channel.
Definition: Ultimate.php:507
const ERR_KEYSET
Sent when attempting to set a key for a channel which already has one.
Definition: Ultimate.php:498
const RPL_CREATED
Last time the IRC server was restarted.
Definition: Ultimate.php:36
const RPL_SILELIST
This numeric is sent in reply to a SILENCE command with no argument for each entry in your silence li...
Definition: Ultimate.php:192
const ERR_NOORIGIN
PING or PONG message missing the originator parameter.
Definition: Ultimate.php:405
const ERR_NONICKNAMEGIVEN
Returned when a nickname parameter is expected for a command and isn&#39;t found.
Definition: Ultimate.php:435
const RPL_TRACELOG
Used to indicate that TRACE information is being logged to a file on the IRC server.
Definition: Ultimate.php:183
const ERR_WILDTOPLEVEL
Returned when an invalid use of "PRIVMSG $<server>" or "PRIVMSG #<host>" is attempted (when the top-l...
Definition: Ultimate.php:417
const ERR_INVITEONLYCHAN
Returned when trying to JOIN a channel which requires an invitation and you&#39;ve not been invited...
Definition: Ultimate.php:510
const RPL_VERSION
Reply by the server showing its version details.
Definition: Ultimate.php:300
const RPL_STATSVLINE
This numeric is used for every entry configured through V-lines (deny version).
Definition: Ultimate.php:672
const RPL_STATSLINKINFO
Reports statistics on a connection.
Definition: Ultimate.php:78
const RPL_NOTOPIC
Sent when joining a channel or issuing a TOPIC command and no topic has been set yet.
Definition: Ultimate.php:276
const RPL_ENDOFSILELIST
Marks the end of the silence list.
Definition: Ultimate.php:195
const RPL_ENDOFWHO
Marks the end of the results to a WHO.
Definition: Ultimate.php:306
const RPL_STATSHLINE
This numeric is used for every entry configured through H-lines (hub).
Definition: Ultimate.php:144
const RPL_STATSNLINE
This numeric is used for every entry configured through N-lines (accept connection).
Definition: Ultimate.php:87
const RPL_ENDOFDCCLIST
Marks the end of either the DCCALLOW HELP command or the DCCALLOW LIST command.
Definition: Ultimate.php:633
const ERR_NOLOGIN
Returned by the summon after a SUMMON command for a user was unable to be performed since they were n...
Definition: Ultimate.php:468
const RPL_ENDOFRULES
Marks the end of the server rules.
Definition: Ultimate.php:666
const ERR_USERSDONTMATCH
Error sent to any user trying to view or change the user mode for a user other than themselves...
Definition: Ultimate.php:564
const RPL_WATCHOFF
Sent by the server after it receives a request to remove someone from the watch list.
Definition: Ultimate.php:597
const RPL_MAPMORE
Sent as a response to a MAP command, to indicate that the network contains more servers than what was...
Definition: Ultimate.php:669
const ERR_SILELISTFULL
This error is sent back when you try to add someone to your silence list and the list is already full...
Definition: Ultimate.php:573
const RPL_WHOISSERVER
Sent in response to a WHOIS or WHOWAS, indicating the IRC server the target user was connected to...
Definition: Ultimate.php:237
const RPL_SUMMONING
Returned by a server answering a SUMMON message to indicate that it is summoning that user...
Definition: Ultimate.php:291
const ERR_NEEDMOREPARAMS
Returned by the server by numerous commands to indicate to the client that it didn&#39;t supply enough pa...
Definition: Ultimate.php:480
const RPL_UMODEIS
To answer a query about a client&#39;s own mode, RPL_UMODEIS is sent back.
Definition: Ultimate.php:108
const RPL_WHOISOPERATOR
Sent in response to a WHOIS, indicating that the target user is an IRC operator.
Definition: Ultimate.php:240
const RPL_TRACESERVER
Used when tracing connections to give information on IRC servers.
Definition: Ultimate.php:69
const RPL_LUSERUNKNOWN
Sent in response to a LUSERS message to indicate how many unknown connections there are...
Definition: Ultimate.php:162
const RPL_LINKS
Sent in response to a LINKS command for every server currently linked to this one that matches a give...
Definition: Ultimate.php:324
const ERR_NOPERMFORHOST
Returned to a client which attempts to register with a server which does not been setup to allow conn...
Definition: Ultimate.php:486
const RPL_MAP
Sent as a response to a MAP command, with information on the network&#39;s map.
Definition: Ultimate.php:45
const RPL_DCCINFO
This numeric is sent as a reply to several commands dealing with the DCCALLOW list.
Definition: Ultimate.php:636
const ERR_CHANOPRIVSNEEDED
Any command requiring &#39;chanop&#39; privileges (such as MODE messages) will return this error if the clien...
Definition: Ultimate.php:537
const ERR_UNKNOWNCOMMAND
Returned to a registered client to indicate that the command sent is unknown by the server...
Definition: Ultimate.php:420
const RPL_NOWON
Sent after a nick has been added to your watch list and that person is currently online.
Definition: Ultimate.php:603
const RPL_EXEMPTLIST
Alias for Erebot_Interface_Numerics::RPL_EXCEPTLIST.
Definition: Ultimate.php:294
const RPL_LUSERCHANNELS
Sent in response to a LUSERS message to indicate how many IRC channels have been formed, if any.
Definition: Ultimate.php:165
const RPL_WATCHLIST
This numeric is sent back for every entry in your watch list when the WATCH s or WATCH S command is u...
Definition: Ultimate.php:609
const RPL_KILLDONE
Unused numeric.
Definition: Ultimate.php:315
const ERR_BANNEDFROMCHAN
Returned when trying to JOIN a channel from which you&#39;ve been banned.
Definition: Ultimate.php:513
const RPL_STATSKLINE
This numeric is used for every entry configured through K-lines (ban user).
Definition: Ultimate.php:93
const ERR_BADCHANMASK
This numeric is sent back to you if you specify an invalid mask for a channel.
Definition: Ultimate.php:519
const ERR_TOOMANYCHANNELS
Sent to a user when they have joined the maximum number of allowed channels and they try to join anot...
Definition: Ultimate.php:393
const ERR_BANLISTFULL
Returned when attempting to add a ban on a channel for which the banlist is already full...
Definition: Ultimate.php:525
const RPL_TRACEOPERATOR
Used when tracing connections to give information on IRC operators.
Definition: Ultimate.php:63