mirror of https://github.com/gorilla/websocket
Mirror of https://github.com/gorilla/websocket
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
339 B
18 lines
339 B
package websocket |
|
|
|
import ( |
|
"context" |
|
"crypto/tls" |
|
) |
|
|
|
func doHandshake(ctx context.Context, tlsConn *tls.Conn, cfg *tls.Config) error { |
|
if err := tlsConn.HandshakeContext(ctx); err != nil { |
|
return err |
|
} |
|
if !cfg.InsecureSkipVerify { |
|
if err := tlsConn.VerifyHostname(cfg.ServerName); err != nil { |
|
return err |
|
} |
|
} |
|
return nil |
|
}
|
|
|