summaryrefslogtreecommitdiff
path: root/src/coremods
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-09-06 10:09:09 +0100
committerPeter Powell <petpow@saberuk.com>2019-02-19 22:53:15 +0000
commitc495b5d9cf8bed4f07c0b77a1f9e98dcc1f62068 (patch)
tree98e522226c9bb73f2fbb074c88d01c1672248fa0 /src/coremods
parent74136695f88ded34f1413b546ad1b0699404bfe8 (diff)
Implement support for IRCv3 client-to-client tags.
Diffstat (limited to 'src/coremods')
-rw-r--r--src/coremods/core_serialize_rfc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_serialize_rfc.cpp b/src/coremods/core_serialize_rfc.cpp
index 6b693bfb9..b8d075ab6 100644
--- a/src/coremods/core_serialize_rfc.cpp
+++ b/src/coremods/core_serialize_rfc.cpp
@@ -32,7 +32,7 @@ class RFCSerializer : public ClientProtocol::Serializer
static const std::string::size_type MAX_CLIENT_MESSAGE_TAG_LENGTH = 4095;
/** The maximum size of server-originated message tags in an outgoing message including the `@`. */
- static const std::string::size_type MAX_SERVER_MESSAGE_TAG_LENGTH = 511;
+ static const std::string::size_type MAX_SERVER_MESSAGE_TAG_LENGTH = 4095;
static void SerializeTags(const ClientProtocol::TagMap& tags, const ClientProtocol::TagSelection& tagwl, std::string& line);