]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modules/whois.h
Implement support for multi-prefix on WHOIS.
[user/henk/code/inspircd.git] / include / modules / whois.h
index f158f82cc7f0b769ffe9a637b302df6f6480ac21..c081a2b6af4194109b02b9fb4860e236110b7ee8 100644 (file)
@@ -28,6 +28,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: