degesch: add a note about RPL_ISUPPORT
This commit is contained in:
parent
295e4c8bf9
commit
a7ccdc78be
|
@ -2279,6 +2279,10 @@ irc_process_numeric (struct app_context *ctx,
|
|||
|
||||
switch (numeric)
|
||||
{
|
||||
case IRC_RPL_ISUPPORT:
|
||||
// TODO: parse this, mainly PREFIX; see
|
||||
// http://www.irc.org/tech_docs/draft-brocklesby-irc-isupport-03.txt
|
||||
break;
|
||||
case IRC_RPL_NAMREPLY:
|
||||
// TODO: find the channel and if found, push nicks to names_buf
|
||||
break;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
2 IRC_RPL_YOURHOST ":Your host is %s, running version %s"
|
||||
3 IRC_RPL_CREATED ":This server was created %s"
|
||||
4 IRC_RPL_MYINFO "%s %s %s %s"
|
||||
5 IRC_RPL_ISUPPORT "%s :are supported by this server"
|
||||
221 IRC_RPL_UMODEIS "+%s"
|
||||
251 IRC_RPL_LUSERCLIENT ":There are %d users and %d services on %d servers"
|
||||
252 IRC_RPL_LUSEROP "%d :operator(s) online"
|
||||
|
|
Loading…
Reference in New Issue