From 14c5690828bbcc8e4c196fe19479acb0ed6563e6 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Fri, 21 Sep 2018 09:52:10 -0400 Subject: [PATCH] up the size of protocol frames to fit intro with 1500 bytes of payload data --- include/llarp/service/protocol.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llarp/service/protocol.hpp b/include/llarp/service/protocol.hpp index 9cdc6ef63..c66c95349 100644 --- a/include/llarp/service/protocol.hpp +++ b/include/llarp/service/protocol.hpp @@ -15,7 +15,7 @@ namespace llarp { namespace service { - constexpr std::size_t MAX_PROTOCOL_MESSAGE_SIZE = 2048; + constexpr std::size_t MAX_PROTOCOL_MESSAGE_SIZE = 2048 * 2; typedef uint64_t ProtocolType;