From 67814faf92fa9f26ec28d863860552458f21be0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sat, 18 Feb 2023 19:26:05 +0800 Subject: [PATCH] Remove TLS min version for shadowtls v3 --- outbound/shadowtls.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/outbound/shadowtls.go b/outbound/shadowtls.go index b5d6518d..8fafcd4f 100644 --- a/outbound/shadowtls.go +++ b/outbound/shadowtls.go @@ -56,8 +56,6 @@ func NewShadowTLS(ctx context.Context, router adapter.Router, logger log.Context options.TLS.MaxVersion = "1.2" case 2: case 3: - options.TLS.MinVersion = "1.3" - options.TLS.MaxVersion = "1.3" default: return nil, E.New("unknown shadowtls protocol version: ", options.Version) }