Browse Source

Remove TLS min version for shadowtls v3

世界 2 years ago
parent
commit
67814faf92
1 changed files with 0 additions and 2 deletions
  1. 0 2
      outbound/shadowtls.go

+ 0 - 2
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)
 	}