diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-07-19 22:28:33 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-07-19 22:28:33 +0200 |
commit | f6b915a169d8c85ffd27c91446477c4429599090 (patch) | |
tree | b20460ecdc4a8f586cb154e15d24cb30245de314 /modules/protocol/ngircd.cpp | |
parent | 02c1724d759f069d47fb3cc653d2d1cf8da160e5 (diff) |
added whois support to the ngircd protocol module, thanks to fgs for sending the patch
Diffstat (limited to 'modules/protocol/ngircd.cpp')
-rw-r--r-- | modules/protocol/ngircd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp index c1c4aac5c..ff34d80bf 100644 --- a/modules/protocol/ngircd.cpp +++ b/modules/protocol/ngircd.cpp @@ -582,6 +582,7 @@ class ProtongIRCd : public Module Message::Stats message_stats; Message::Time message_time; Message::Version message_version; + Message::Whois message_whois; /* Our message handlers */ IRCDMessage005 message_005; @@ -647,7 +648,7 @@ class ProtongIRCd : public Module message_capab(this), message_error(this), message_invite(this), message_kick(this), message_kill(this), message_motd(this), message_notice(this), message_part(this), message_ping(this), message_privmsg(this), message_squery(this, "SQUERY"), message_quit(this), message_squit(this), message_stats(this), message_time(this), - message_version(this), + message_version(this), message_whois(this), message_005(this), message_376(this), message_chaninfo(this), message_join(this), message_metadata(this), message_mode(this), message_nick(this), message_njoin(this), message_pong(this), message_server(this), |