From 4a1e075ee0c73a798928e17fab1c0b892a60048d Mon Sep 17 00:00:00 2001 From: Cecylia Bocovich Date: Tue, 4 Feb 2025 15:41:35 -0500 Subject: [PATCH] Lower broker ClientTimeout to 5 seconds Matches the observed timeout for CDN77, based on user reports. https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/issues/40446 --- broker/ipc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/broker/ipc.go b/broker/ipc.go index bde72b0..709974b 100644 --- a/broker/ipc.go +++ b/broker/ipc.go @@ -14,7 +14,7 @@ import ( ) const ( - ClientTimeout = 10 + ClientTimeout = 5 // this is calibrated to match the timeout of the CDNs we use for rendezvous ProxyTimeout = 10 NATUnknown = "unknown"