balanced buffers and channel sizes

This commit is contained in:
2026-03-20 18:00:19 +07:00
parent 43a0b9daed
commit b258db671b
3 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ pub struct UdpConnection {
const UDP_TIMEOUT: Duration = Duration::from_secs(60);
const CHANNEL_CAPACITY: usize = 64;
const CHANNEL_CAPACITY: usize = 128;
impl UdpConnection {
pub fn new(handle: SocketHandle, target_addr: TargetAddress, muxer: Muxer) -> Self {