Fixed ping processing.

Changed the limit of active connections from 10 to 15.
This commit is contained in:
Revertron
2021-04-23 21:22:22 +02:00
parent 1b406baeca
commit 640e2a0619
3 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -44,4 +44,4 @@ pub const LOG_REFRESH_DELAY_SEC: u64 = 60;
pub const POLL_TIMEOUT: Option<Duration> = Some(Duration::from_millis(250));
pub const MAX_PACKET_SIZE: usize = 1 * 1024 * 1024; // 1 Mb
pub const MAX_READ_BLOCK_TIME: u128 = 500;
pub const MAX_NODES: usize = 10;
pub const MAX_NODES: usize = 15;