increase link layer buffer size

allows for higher amounts of traffic on the network to be pushed.
This commit is contained in:
Jeff Becker 2021-06-02 15:23:10 -04:00
parent b1d30f9803
commit 9bb3711ca4
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@
constexpr size_t MAX_LINK_MSG_SIZE = 8192;
static constexpr auto DefaultLinkSessionLifetime = 1min;
constexpr size_t MaxSendQueueSize = 1024;
constexpr size_t MaxSendQueueSize = 1024 * 16;
static constexpr auto LinkLayerConnectTimeout = 5s;