mirror of https://github.com/rapiz1/rathole.git
fix: decrease tcp connection pool size
This commit is contained in:
parent
8d2dc65a1d
commit
9b3d2eb79a
|
@ -31,7 +31,7 @@ use crate::transport::TlsTransport;
|
|||
type ServiceDigest = protocol::Digest; // SHA256 of a service name
|
||||
type Nonce = protocol::Digest; // Also called `session_key`
|
||||
|
||||
const TCP_POOL_SIZE: usize = 64; // The number of cached connections for TCP servies
|
||||
const TCP_POOL_SIZE: usize = 8; // The number of cached connections for TCP servies
|
||||
const UDP_POOL_SIZE: usize = 2; // The number of cached connections for UDP services
|
||||
const CHAN_SIZE: usize = 2048; // The capacity of various chans
|
||||
|
||||
|
|
Loading…
Reference in New Issue