mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
fix client SNI handling (#3613)
* fix: client sni handling * chore: add comment
This commit is contained in:
parent
5fe9f9bd89
commit
2de4af00d0
1 changed files with 4 additions and 8 deletions
12
client.go
12
client.go
|
@ -6,7 +6,6 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||||
|
@ -232,13 +231,10 @@ func newClient(
|
||||||
tlsConf = tlsConf.Clone()
|
tlsConf = tlsConf.Clone()
|
||||||
}
|
}
|
||||||
if tlsConf.ServerName == "" {
|
if tlsConf.ServerName == "" {
|
||||||
sni := host
|
sni, _, err := net.SplitHostPort(host)
|
||||||
if strings.IndexByte(sni, ':') != -1 {
|
if err != nil {
|
||||||
var err error
|
// It's ok if net.SplitHostPort returns an error - it could be a hostname/IP address without a port.
|
||||||
sni, _, err = net.SplitHostPort(sni)
|
sni = host
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tlsConf.ServerName = sni
|
tlsConf.ServerName = sni
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue