]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modules/whois.h
Remove the Kiwi links from the readme.
[user/henk/code/inspircd.git] / include / modules / whois.h
index f158f82cc7f0b769ffe9a637b302df6f6480ac21..2ac46dcd48d0e600bbfbdaa92109fe0a407eaa49 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
+ *   Copyright (C) 2021 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2015-2016 Attila Molnar <attilamolnar@hush.com>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
@@ -28,6 +29,22 @@ namespace Whois
        class Context;
 }
 
+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
+};
+
 class Whois::EventListener : public Events::ModuleEventListener
 {
  public: