From 37b80e706f78ed3eb322ba15e562b0ffbc3129ef Mon Sep 17 00:00:00 2001 From: edvard Date: Thu, 20 Aug 2026 16:03:31 +0200 Subject: [PATCH] fix: utilize all 6 bits for outgoing ports this reduces the chance of wrap around connection collisions --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f8dc8526..d889cf1c 100644 --- a/meson.build +++ b/meson.build @@ -9,7 +9,7 @@ project('csh', ['c', 'cpp'], subproject_dir: 'lib', default_options: [ 'csp:packet_padding_bytes=42', 'csp:buffer_count=1000', 'csp:buffer_size=2048', - 'csp:conn_max=20', + 'csp:conn_max=47', 'csp:conn_rxqueue_len=1000', 'csp:qfifo_len=1000', 'csp:rdp_max_window=1000',