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.
pull/1795/head
Jason Rhinelander 3 years ago
parent 78cc466bf2
commit e47d3098ac

@ -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}

Loading…
Cancel
Save