Increase plaintext queue size from 32 to 512

In testing we were sometimes hitting a full queue error, which makes
sense because the queue size seems really small.

Increase it to 512.
This commit is contained in:
Jason Rhinelander 2021-11-12 10:09:16 -04:00
parent 78cc466bf2
commit e47d3098ac
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ namespace llarp
return pkt;
}
constexpr size_t PlaintextQueueSize = 32;
constexpr size_t PlaintextQueueSize = 512;
Session::Session(LinkLayer* p, const RouterContact& rc, const AddressInfo& ai)
: m_State{State::Initial}