ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/numeric.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/numeric.c (file contents):
Revision 7281 by michael, Sun Feb 7 18:02:24 2016 UTC vs.
Revision 9349 by michael, Sun Apr 26 05:59:56 2020 UTC

# Line 1 | Line 1
1   /*
2   *  ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3   *
4 < *  Copyright (c) 1997-2016 ircd-hybrid development team
4 > *  Copyright (c) 1997-2020 ircd-hybrid development team
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 30 | Line 30
30  
31   static const char *const replies[] =
32   {
33 <  /* 001 */  [RPL_WELCOME] = ":Welcome to the %s Internet Relay Chat Network %s",
33 >  /* 001 */  [RPL_WELCOME] = ":Welcome to the %s Internet Relay Chat Network %s!%s@%s",
34    /* 002 */  [RPL_YOURHOST] = ":Your host is %s, running version %s",
35    /* 003 */  [RPL_CREATED] = ":This server was created %s",
36 <  /* 004 */  [RPL_MYINFO] = "%s %s %s bchiklmnoprstveCIMORST bkloveIh",
36 >  /* 004 */  [RPL_MYINFO] = "%s %s %s bchiklmnoprstuveCILMNORST bkloveIh",
37    /* 005 */  [RPL_ISUPPORT] = "%s :are supported by this server",
38    /* 010 */  [RPL_REDIR] = "%s %u :Please use this Server/Port instead",
39    /* 015 */  [RPL_MAP] = ":%s%s",
# Line 42 | Line 42 | static const char *const replies[] =
42    /* 200 */  [RPL_TRACELINK] = "Link %s %s %s",
43    /* 201 */  [RPL_TRACECONNECTING] = "Try. %s %s",
44    /* 202 */  [RPL_TRACEHANDSHAKE] = "H.S. %s %s",
45 <  /* 203 */  [RPL_TRACEUNKNOWN] = "???? %s %s (%s) %d",
45 >  /* 203 */  [RPL_TRACEUNKNOWN] = "???? %s %s (%s) %ju",
46    /* 204 */  [RPL_TRACEOPERATOR] = "Oper %s %s (%s) %ju %u",
47    /* 205 */  [RPL_TRACEUSER] = "User %s %s (%s) %ju %u",
48    /* 206 */  [RPL_TRACESERVER] = "Serv %s %uS %uC %s %s!%s@%s %ju",
49    /* 208 */  [RPL_TRACENEWTYPE] = "<newtype> 0 %s",
50    /* 209 */  [RPL_TRACECLASS] = "Class %s %u",
51 <  /* 211 */  [RPL_STATSLINKINFO] = "%s %u %u %ju %u %ju :%u %u %s",
51 >  /* 211 */  [RPL_STATSLINKINFO] = "%s %u %u %ju %u %ju :%ju %ju %s",
52    /* 212 */  [RPL_STATSCOMMANDS] = "%s %u %ju :%u",
53    /* 213 */  [RPL_STATSCLINE] = "%c %s %s %s %u %s",
54    /* 215 */  [RPL_STATSILINE] = "%c %s * %s@%s %u %s",
# Line 60 | Line 60 | static const char *const replies[] =
60    /* 221 */  [RPL_UMODEIS] = "%s",
61    /* 225 */  [RPL_STATSDLINE] = "%c %s :%s",
62    /* 226 */  [RPL_STATSALINE] = "%s",
63 +  /* 227 */  [RPL_STATSPSEUDO] = "s %s %s %s@%s :%s",
64    /* 241 */  [RPL_STATSLLINE] = "%c %s * %s %u %s",
65    /* 242 */  [RPL_STATSUPTIME] = ":Server Up %s",
66    /* 243 */  [RPL_STATSOLINE] = "%c %s@%s * %s %s %s",
67    /* 244 */  [RPL_STATSHLINE] = "%c %s * %s %u %s",
68    /* 245 */  [RPL_STATSTLINE] = "T %s %s",
69 <  /* 246 */  [RPL_STATSSERVICE] = "%c %s * %s %u %u",
70 <  /* 247 */  [RPL_STATSXLINE] = "%c %u %s :%s",
69 >  /* 246 */  [RPL_STATSSERVICE] = "S %s * %s %u %u",
70 >  /* 247 */  [RPL_STATSXLINE] = "%c %s :%s",
71    /* 248 */  [RPL_STATSULINE] = "U %s %s@%s %s",
72    /* 250 */  [RPL_STATSCONN] = ":Highest connection count: %u (%u clients) (%ju connections received)",
73    /* 251 */  [RPL_LUSERCLIENT] = ":There are %u users and %u invisible on %u servers",
# Line 86 | Line 87 | static const char *const replies[] =
87    /* 281 */  [RPL_ACCEPTLIST] = ":%s",
88    /* 282 */  [RPL_ENDOFACCEPT] = ":End of /ACCEPT list.",
89    /* 301 */  [RPL_AWAY] = "%s :%s",
90 <  /* 302 */  [RPL_USERHOST] = ":%s 302 %s :%s",
91 <  /* 303 */  [RPL_ISON] = ":%s 303 %s :",
90 >  /* 302 */  [RPL_USERHOST] = ":%s",
91 >  /* 303 */  [RPL_ISON] = ":%s",
92    /* 305 */  [RPL_UNAWAY] = ":You are no longer marked as being away",
93    /* 306 */  [RPL_NOWAWAY] = ":You have been marked as being away",
94    /* 307 */  [RPL_WHOISREGNICK] = "%s :has identified for this nick",
# Line 113 | Line 114 | static const char *const replies[] =
114    /* 337 */  [RPL_ENDOFINVITELIST] = ":End of /INVITE list.",
115    /* 338 */  [RPL_WHOISACTUALLY] = "%s %s@%s %s :Actual user@host, actual IP",
116    /* 341 */  [RPL_INVITING] = "%s %s",
117 <  /* 346 */  [RPL_INVEXLIST] = "%s %s!%s@%s %s %ju",
117 >  /* 346 */  [RPL_INVEXLIST] = "%s %s %s %ju",
118    /* 347 */  [RPL_ENDOFINVEXLIST] = "%s :End of Channel Invite List",
119 <  /* 348 */  [RPL_EXCEPTLIST] = "%s %s!%s@%s %s %ju",
119 >  /* 348 */  [RPL_EXCEPTLIST] = "%s %s %s %ju",
120    /* 349 */  [RPL_ENDOFEXCEPTLIST] = "%s :End of Channel Exception List",
121    /* 351 */  [RPL_VERSION] = "%s(%s). %s :%s",
122    /* 352 */  [RPL_WHOREPLY] = "%s %s %s %s %s %s :%u %s",
# Line 125 | Line 126 | static const char *const replies[] =
126    /* 364 */  [RPL_LINKS] = "%s %s :%u %s",
127    /* 365 */  [RPL_ENDOFLINKS] = "%s :End of /LINKS list.",
128    /* 366 */  [RPL_ENDOFNAMES] = "%s :End of /NAMES list.",
129 <  /* 367 */  [RPL_BANLIST] = "%s %s!%s@%s %s %ju",
129 >  /* 367 */  [RPL_BANLIST] = "%s %s %s %ju",
130    /* 368 */  [RPL_ENDOFBANLIST] = "%s :End of Channel Ban List",
131    /* 369 */  [RPL_ENDOFWHOWAS] = "%s :End of WHOWAS",
132    /* 371 */  [RPL_INFO] = ":%s",
# Line 155 | Line 156 | static const char *const replies[] =
156    /* 414 */  [ERR_WILDTOPLEVEL] = "%s :Wildcard in top-level domain",
157    /* 421 */  [ERR_UNKNOWNCOMMAND] = "%s :Unknown command",
158    /* 422 */  [ERR_NOMOTD] = ":MOTD File is missing",
158  /* 423 */  [ERR_NOADMININFO] = "%s :No administrative info available",
159    /* 429 */  [ERR_TOOMANYAWAY] = ":Too many aways - Flood protection activated",
160    /* 431 */  [ERR_NONICKNAMEGIVEN] = ":No nickname given",
161    /* 432 */  [ERR_ERRONEUSNICKNAME] = "%s :%s",
162    /* 433 */  [ERR_NICKNAMEINUSE] = "%s :Nickname is already in use.",
163 +  /* 435 */  [ERR_BANNICKCHANGE] = "%s :Cannot change nickname while banned on channel",
164    /* 436 */  [ERR_NICKCOLLISION] = "%s :Nickname collision KILL",
165    /* 438 */  [ERR_NICKTOOFAST] = "%s :Nick change too fast. Please wait %u seconds.",
166    /* 440 */  [ERR_SERVICESDOWN] = "%s :Services are currently unavailable.",
167    /* 441 */  [ERR_USERNOTINCHANNEL] = "%s %s :They aren't on that channel",
168    /* 442 */  [ERR_NOTONCHANNEL] = "%s :You are not on that channel",
169    /* 443 */  [ERR_USERONCHANNEL] = "%s %s :is already on channel",
170 +  /* 447 */  [ERR_NONICKCHANGE] = ":Cannot change nickname while on %s (+N)",
171    /* 451 */  [ERR_NOTREGISTERED] = ":You have not registered",
172    /* 456 */  [ERR_ACCEPTFULL] = ":Accept list is full",
173    /* 457 */  [ERR_ACCEPTEXIST] = "%s!%s@%s :is already on your accept list",
# Line 188 | Line 190 | static const char *const replies[] =
190    /* 483 */  [ERR_CANTKILLSERVER] = ":You cannot kill a server!",
191    /* 485 */  [ERR_CHANBANREASON] = "%s :Cannot join channel (%s)",
192    /* 486 */  [ERR_NONONREG] = "%s :You must identify to a registered nick to private message that person",
193 <  /* 489 */  [ERR_SSLONLYCHAN] = "%s :Cannot join channel (+S)",
193 >  /* 489 */  [ERR_SECUREONLYCHAN] = "%s :Cannot join channel (+S) - TLS required",
194    /* 491 */  [ERR_NOOPERHOST] = ":Only few of mere mortals may try to enter the twilight zone",
195    /* 492 */  [ERR_NOCTCP] = "%s :You cannot send CTCPs to this channel. Not sent: %s",
196    /* 501 */  [ERR_UMODEUNKNOWNFLAG] = ":Unknown MODE flag",
# Line 208 | Line 210 | static const char *const replies[] =
210    /* 605 */  [RPL_NOWOFF] = "%s %s %s %ju :is offline",
211    /* 606 */  [RPL_WATCHLIST] = ":%s",
212    /* 607 */  [RPL_ENDOFWATCHLIST] = ":End of WATCH %c",
213 <  /* 671 */  [RPL_WHOISSECURE] = "%s :is connected via SSL (secure link)",
213 >  /* 671 */  [RPL_WHOISSECURE] = "%s :is connected via TLS (secure link)",
214    /* 702 */  [RPL_MODLIST] = "%s %p %s %s",
215    /* 703 */  [RPL_ENDOFMODLIST] = ":End of /MODULE LIST.",
216    /* 704 */  [RPL_HELPSTART] = "%s :%s",
# Line 225 | Line 227 | static const char *const replies[] =
227    /* 717 */  [RPL_TARGNOTIFY] = "%s :has been informed that you messaged them.",
228    /* 718 */  [RPL_UMODEGMSG] = "%s %s@%s :is messaging you, and you are umode %s.",
229    /* 723 */  [ERR_NOPRIVS] = "%s :Insufficient oper privileges.",
230 +  /* 743 */  [ERR_INVALIDBAN] = "%s :Invalid ban mask",
231 +  /* 759 */  [RPL_ETRACEEND] = "%s :End of ETRACE",
232    /* 999 */  [ERR_LAST_ERR_MSG] = ":Last error message"
233   };
234  

Comparing ircd-hybrid/branches/8.2.x/src/numeric.c (property svn:keywords):
Revision 7281 by michael, Sun Feb 7 18:02:24 2016 UTC vs.
Revision 9349 by michael, Sun Apr 26 05:59:56 2020 UTC

# Line 1 | Line 1
1 < Id Revision
1 > Id

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)