From d4ab27de1f86ec60f067665510d06ce148beee0e Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Wed, 1 Nov 2023 12:27:13 +0700 Subject: [PATCH] don't set the TLS version in the transport (#4135) This is already done in the crypto setup. --- transport.go | 1 - 1 file changed, 1 deletion(-) diff --git a/transport.go b/transport.go index 38d35238..6dee5184 100644 --- a/transport.go +++ b/transport.go @@ -191,7 +191,6 @@ func (t *Transport) dial(ctx context.Context, addr net.Addr, host string, tlsCon onClose = func() { t.Close() } } tlsConf = tlsConf.Clone() - tlsConf.MinVersion = tls.VersionTLS13 setTLSConfigServerName(tlsConf, addr, host) return dial(ctx, newSendConn(t.conn, addr, packetInfo{}, utils.DefaultLogger), t.connIDGenerator, t.handlerMap, tlsConf, conf, onClose, use0RTT) }