summaryrefslogtreecommitdiff
path: root/include/protocol.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-06-24 14:29:55 +0100
committerSadie Powell <sadie@witchery.services>2024-06-24 14:29:55 +0100
commit693eeed762eac490b1289f8f4428ff0b5bbf1672 (patch)
tree974cbad287da04fc9e137d7f51092efd2e474acd /include/protocol.h
parent6e5713d64a379fc64c7ff6658362d02b3618c3ca (diff)
Rework how CTCP messages are sent and received.
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/protocol.h b/include/protocol.h
index d69fa66fc..7f36a2917 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -43,7 +43,6 @@ public:
virtual void SendNotice(const MessageSource &source, const Anope::string &dest, const Anope::string &msg, const Anope::map<Anope::string> &tags = {});
virtual void SendPrivmsg(const MessageSource &source, const Anope::string &dest, const Anope::string &msg, const Anope::map<Anope::string> &tags = {});
- virtual void SendCTCPInternal(const MessageSource &, const Anope::string &dest, const Anope::string &buf);
/** Parses an incoming message from the IRC server.
* @param message The message to parse.
@@ -213,9 +212,6 @@ public:
virtual void SendKick(const MessageSource &source, const Channel *chan, User *user, const Anope::string &msg);
- virtual void SendAction(const MessageSource &source, const Anope::string &dest, const char *fmt, ...) ATTR_FORMAT(4, 5);
- virtual void SendCTCP(const MessageSource &source, const Anope::string &dest, const char *fmt, ...) ATTR_FORMAT(4, 5);
-
virtual void SendGlobalNotice(BotInfo *bi, const Server *dest, const Anope::string &msg) = 0;
virtual void SendGlobalPrivmsg(BotInfo *bi, const Server *desc, const Anope::string &msg) = 0;