From: Attila Molnar Date: Wed, 30 Mar 2016 10:38:36 +0000 (+0200) Subject: Remove ProtocolInterface::PushToClient() X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=804d58e2001f04786d2594f046d591b664235642;p=user%2Fhenk%2Fcode%2Finspircd.git Remove ProtocolInterface::PushToClient() --- diff --git a/include/protocol.h b/include/protocol.h index 2b1ffb753..b3f209a82 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -110,12 +110,6 @@ class CoreExport ProtocolInterface */ virtual void SendSNONotice(char snomask, const std::string& text) { } - /** Send raw data to a remote client. - * @param target The user to push data to. - * @param rawline The raw IRC protocol line to deliver (":me NOTICE you :foo", whatever). - */ - virtual void PushToClient(User* target, const std::string &rawline) { } - /** Send a message to a channel. * @param target The channel to message. * @param status The status character (e.g. %) required to recieve. diff --git a/src/modules/m_spanningtree/protocolinterface.cpp b/src/modules/m_spanningtree/protocolinterface.cpp index 786f8b74b..957638517 100644 --- a/src/modules/m_spanningtree/protocolinterface.cpp +++ b/src/modules/m_spanningtree/protocolinterface.cpp @@ -112,11 +112,6 @@ void SpanningTreeProtocolInterface::SendSNONotice(char snomask, const std::strin CmdBuilder("SNONOTICE").push(snomask).push_last(text).Broadcast(); } -void SpanningTreeProtocolInterface::PushToClient(User* target, const std::string &rawline) -{ - CmdBuilder("PUSH").push(target->uuid).push_last(rawline).Unicast(target); -} - void SpanningTreeProtocolInterface::SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype) { const char* cmd = (msgtype == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE"); diff --git a/src/modules/m_spanningtree/protocolinterface.h b/src/modules/m_spanningtree/protocolinterface.h index 45742e9ea..c86ca007c 100644 --- a/src/modules/m_spanningtree/protocolinterface.h +++ b/src/modules/m_spanningtree/protocolinterface.h @@ -38,7 +38,6 @@ class SpanningTreeProtocolInterface : public ProtocolInterface void SendMetaData(const std::string& key, const std::string& data) CXX11_OVERRIDE; void SendTopic(Channel* channel, std::string &topic); void SendSNONotice(char snomask, const std::string& text) CXX11_OVERRIDE; - void PushToClient(User* target, const std::string &rawline); void SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype); void SendMessage(User* target, const std::string& text, MessageType msgtype); void GetServerList(ServerList& sl);