]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_whois.cpp
Remove the Kiwi links from the readme.
[user/henk/code/inspircd.git] / src / coremods / core_whois.cpp
index 8ac86337e27bee694a4f21744841a2c16368e5bf..c1c4777ef24c397b4bcaff5c555ed290a47ce811 100644 (file)
@@ -4,7 +4,7 @@
  *   Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
  *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
  *   Copyright (C) 2018 Dylan Frank <b00mx0r@aureus.pw>
- *   Copyright (C) 2017-2018 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2017-2018, 2020 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2012-2016 Attila Molnar <attilamolnar@hush.com>
  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
 #include "inspircd.h"
 #include "modules/whois.h"
 
-enum
-{
-       // From RFC 1459.
-       RPL_WHOISUSER = 311,
-       RPL_WHOISOPERATOR = 313,
-       RPL_WHOISIDLE = 317,
-       RPL_WHOISCHANNELS = 319,
-
-       // From UnrealIRCd.
-       RPL_WHOISHOST = 378,
-       RPL_WHOISMODES = 379,
-
-       // InspIRCd-specific.
-       RPL_CHANNELSMSG = 651
-};
-
 enum SplitWhoisState
 {
        // Don't split private/secret channels into a separate RPL_WHOISCHANNELS numeric.
@@ -312,8 +296,8 @@ CmdResult CommandWhois::HandleLocal(LocalUser* user, const Params& parameters)
                return CMD_SUCCESS;
 
        /*
-        * If 2 paramters are specified (/whois nick nick), ignore the first one like spanningtree
-        * does, and use the second one, otherwise, use the only paramter. -- djGrrr
+        * If 2 parameters are specified (/whois nick nick), ignore the first one like spanningtree
+        * does, and use the second one, otherwise, use the only parameter. -- djGrrr
         */
        if (parameters.size() > 1)
                userindex = 1;