mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-18 23:36:39 +01:00
increase maximum stream resend attempts to 9
This commit is contained in:
parent
57e46ba0cf
commit
b2e21a4f12
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ namespace stream
|
||||||
const size_t STREAMING_MTU_RATCHETS = 1812;
|
const size_t STREAMING_MTU_RATCHETS = 1812;
|
||||||
const size_t MAX_PACKET_SIZE = 4096;
|
const size_t MAX_PACKET_SIZE = 4096;
|
||||||
const size_t COMPRESSION_THRESHOLD_SIZE = 66;
|
const size_t COMPRESSION_THRESHOLD_SIZE = 66;
|
||||||
const int MAX_NUM_RESEND_ATTEMPTS = 6;
|
const int MAX_NUM_RESEND_ATTEMPTS = 9;
|
||||||
const int WINDOW_SIZE = 6; // in messages
|
const int WINDOW_SIZE = 6; // in messages
|
||||||
const int MIN_WINDOW_SIZE = 1;
|
const int MIN_WINDOW_SIZE = 1;
|
||||||
const int MAX_WINDOW_SIZE = 128;
|
const int MAX_WINDOW_SIZE = 128;
|
||||||
|
|
Loading…
Add table
Reference in a new issue