mirror of https://github.com/gorilla/websocket.git
Merge 873ca6009f
into ce903f6d1d
This commit is contained in:
commit
71e79a20b9
12
client.go
12
client.go
|
@ -186,6 +186,10 @@ func (d *Dialer) DialContext(ctx context.Context, urlStr string, requestHeader h
|
|||
return nil, nil, errMalformedURL
|
||||
}
|
||||
|
||||
host := requestHeader.Get("Host")
|
||||
if host == "" {
|
||||
host = u.Host
|
||||
}
|
||||
req := &http.Request{
|
||||
Method: http.MethodGet,
|
||||
URL: u,
|
||||
|
@ -193,7 +197,7 @@ func (d *Dialer) DialContext(ctx context.Context, urlStr string, requestHeader h
|
|||
ProtoMajor: 1,
|
||||
ProtoMinor: 1,
|
||||
Header: make(http.Header),
|
||||
Host: u.Host,
|
||||
Host: host,
|
||||
}
|
||||
req = req.WithContext(ctx)
|
||||
|
||||
|
@ -339,7 +343,11 @@ func (d *Dialer) DialContext(ctx context.Context, urlStr string, requestHeader h
|
|||
|
||||
cfg := cloneTLSConfig(d.TLSClientConfig)
|
||||
if cfg.ServerName == "" {
|
||||
cfg.ServerName = hostNoPort
|
||||
if host != "" {
|
||||
cfg.ServerName = host
|
||||
} else {
|
||||
cfg.ServerName = hostNoPort
|
||||
}
|
||||
}
|
||||
tlsConn := tls.Client(netConn, cfg)
|
||||
netConn = tlsConn
|
||||
|
|
Loading…
Reference in New Issue