From 393f8de3ee2d685271d79ee608334e441b2db324 Mon Sep 17 00:00:00 2001 From: fan yang Date: Tue, 8 Sep 2026 12:29:18 +0800 Subject: [PATCH] Increase REALITY target TLS record buffer to 17 KiB (#33) Fixes https://github.com/XTLS/Xray-core/issues/6356 --- tls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tls.go b/tls.go index 4c8ef86..3e94c80 100644 --- a/tls.go +++ b/tls.go @@ -137,7 +137,7 @@ func NewRatelimitedConn(conn net.Conn, limit *LimitFallback) net.Conn { } var ( - size = 8192 + size = 17 * 1024 empty = make([]byte, size) types = [7]string{ "Server Hello",