From 69045b5fbbc30600e11aa6899332a637069fdb5b Mon Sep 17 00:00:00 2001 From: Shelikhoo Date: Wed, 11 Sep 2024 14:51:08 +0100 Subject: [PATCH] update comment on conn.SetStreamMode --- client/lib/snowflake.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/snowflake.go b/client/lib/snowflake.go index 910e4c7..29041f0 100644 --- a/client/lib/snowflake.go +++ b/client/lib/snowflake.go @@ -359,7 +359,7 @@ func newSession(snowflakes SnowflakeCollector, clientIDCandid turbotunnel.Client pconn.Close() return nil, nil, err } - // Permit coalescing the payloads of consecutive sends. + // Disallow coalescing the payloads of consecutive sends. conn.SetStreamMode(false) // Set the maximum send and receive window sizes to a high number // Removes KCP bottlenecks: https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/issues/40026