summaryrefslogtreecommitdiff
path: root/include/protocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/protocol.h b/include/protocol.h
index 01eb145f1..2e512f11a 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -98,33 +98,12 @@ class CoreExport ProtocolInterface
*/
virtual void SendMetaData(const std::string& key, const std::string& data) { }
- /** Send a topic change for a channel
- * @param channel The channel to change the topic for.
- * @param topic The new topic to use for the channel.
- */
- virtual void SendTopic(Channel* channel, std::string &topic) { }
-
- /** Send mode changes for an object.
- * @param source The source of the mode change
- * @param usertarget The target user, NULL if the target is a channel
- * @param chantarget The target channel, NULL if the target is a user
- * @param modedata The mode changes to send.
- * @param translate A list of translation types
- */
- virtual void SendMode(User* source, User* usertarget, Channel* chantarget, const parameterlist& modedata, const std::vector<TranslateType>& translate) { }
-
/** Send a notice to users with a given snomask.
* @param snomask The snomask required for the message to be sent.
* @param text The message to send.
*/
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.