diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 12:49:42 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 12:49:42 +0000 |
commit | b07868e77c0527642ed72bce84bf5895bf921e87 (patch) | |
tree | c58e2e4df2bd7817caf00ccdaa1c9851e21c1393 /include | |
parent | b29d14d0004e357c8fe5985f0389e9ad2b64c91d (diff) |
The rest of the server protocol interface and fix a warning in m_rline
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9299 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h index 65369e781..21e6b5396 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -29,7 +29,7 @@ class ProtocolInterface : public Extensible virtual void SendEncapsulatedData(parameterlist &encap) { } virtual void SendMetaData(void* target, int type, const std::string &key, const std::string &data) { } virtual void SendTopic(Channel* channel, std::string &topic) { } - virtual void SendMode(const std::string &origin, const std::string &target, parameterlist &modedata) { } + virtual void SendMode(const std::string &target, parameterlist &modedata) { } virtual void SendOperNotice(const std::string &text) { } virtual void SendModeNotice(const std::string &modes, const std::string &text) { } virtual void SendSNONotice(const std::string &snomask, const std::string &text) { } |