diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-03-19 19:16:13 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-03-19 19:16:13 +0100 |
commit | 68eeac67c9ca8d85e47b9ca8190f0f5042d0830e (patch) | |
tree | fca42aa17254eeec04cbb8a8e243e3fdb0fa956c /modules/protocol/inspircd20.cpp | |
parent | 731912f01eb14d811575c492dc64b60084bd412c (diff) |
InspIRCd: Don't reply to VERSION
InspIRCd sends all known version strings at burst and remembers the version strings sent to it. When a client does a /version <server> the cached version string is sent.
Diffstat (limited to 'modules/protocol/inspircd20.cpp')
-rw-r--r-- | modules/protocol/inspircd20.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/protocol/inspircd20.cpp b/modules/protocol/inspircd20.cpp index 632c60a3c..64c5f8f2e 100644 --- a/modules/protocol/inspircd20.cpp +++ b/modules/protocol/inspircd20.cpp @@ -633,7 +633,6 @@ class ProtoInspIRCd : public Module Message::SQuit message_squit; Message::Stats message_stats; Message::Topic message_topic; - Message::Version message_version; /* InspIRCd 1.2 message handlers */ ServiceAlias message_endburst, message_fhost, message_fjoin, message_fmode, @@ -656,7 +655,7 @@ class ProtoInspIRCd : public Module ircd_proto(this), message_away(this), message_error(this), message_join(this), message_kick(this), message_kill(this), message_motd(this), message_part(this), message_ping(this), message_privmsg(this), message_quit(this), - message_squit(this), message_stats(this), message_topic(this), message_version(this), + message_squit(this), message_stats(this), message_topic(this), message_endburst("IRCDMessage", "inspircd20/endburst", "inspircd12/endburst"), message_fhost("IRCDMessage", "inspircd20/fhost", "inspircd12/fhost"), |