diff options
Diffstat (limited to 'include/modules/protocol/rfc1459.h')
-rw-r--r-- | include/modules/protocol/rfc1459.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/modules/protocol/rfc1459.h b/include/modules/protocol/rfc1459.h index 54c4bada5..8780892e0 100644 --- a/include/modules/protocol/rfc1459.h +++ b/include/modules/protocol/rfc1459.h @@ -288,6 +288,14 @@ class Ping : public IRCDMessage void Run(MessageSource &source, const std::vector<Anope::string> ¶ms) override; }; +class Pong : public IRCDMessage +{ + public: + Pong(Module *creator, const Anope::string &mname = "PONG") : IRCDMessage(creator, mname) { } + + void Run(MessageSource &source, const std::vector<Anope::string> ¶ms) override; +}; + class Privmsg : public IRCDMessage { public: |