summaryrefslogtreecommitdiff
path: root/include/uplink.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-02-22 00:04:46 +0000
committerSadie Powell <sadie@witchery.services>2024-02-22 00:14:08 +0000
commitd4f4bcf23cc55abe77edeb6139257e504c627e38 (patch)
tree82df37fa02bd82f71d2a0a6b9f1bc8a54f1fcc6d /include/uplink.h
parent82fa7e1467160332aa3692db5d3c58e54d50bbc7 (diff)
Remove UplinkSocket::Message now nothing uses it.
Diffstat (limited to 'include/uplink.h')
-rw-r--r--include/uplink.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/uplink.h b/include/uplink.h
index 20bd26f80..12365dd65 100644
--- a/include/uplink.h
+++ b/include/uplink.h
@@ -57,22 +57,5 @@ public:
bool ProcessRead() override;
void OnConnect() override;
void OnError(const Anope::string &) override;
-
- /* A message sent over the uplink socket */
- class CoreExport [[deprecated]] Message final
- {
- MessageSource source;
- std::stringstream buffer;
-
- public:
- Message();
- Message(const MessageSource &);
- ~Message();
- template<typename T> Message &operator<<(const T &val)
- {
- this->buffer << val;
- return *this;
- }
- };
};
extern CoreExport UplinkSocket *UplinkSock;