From 2de4af00d06891b8b110965a2aa44b0a84dcc71b Mon Sep 17 00:00:00 2001 From: Toby Date: Mon, 7 Nov 2022 01:52:22 -0800 Subject: [PATCH] fix client SNI handling (#3613) * fix: client sni handling * chore: add comment --- client.go | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/client.go b/client.go index 3d7f1505..a93f7536 100644 --- a/client.go +++ b/client.go @@ -6,7 +6,6 @@ import ( "errors" "fmt" "net" - "strings" "github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/utils" @@ -232,13 +231,10 @@ func newClient( tlsConf = tlsConf.Clone() } if tlsConf.ServerName == "" { - sni := host - if strings.IndexByte(sni, ':') != -1 { - var err error - sni, _, err = net.SplitHostPort(sni) - if err != nil { - return nil, err - } + sni, _, err := net.SplitHostPort(host) + if err != nil { + // It's ok if net.SplitHostPort returns an error - it could be a hostname/IP address without a port. + sni = host } tlsConf.ServerName = sni