1
0
mirror of https://github.com/rancher/norman.git synced 2025-07-17 17:01:10 +00:00
norman/vendor/github.com/gorilla/websocket/trace_17.go
2019-09-30 09:47:04 -07:00

13 lines
221 B
Go

// +build !go1.8
package websocket
import (
"crypto/tls"
"net/http/httptrace"
)
func doHandshakeWithTrace(trace *httptrace.ClientTrace, tlsConn *tls.Conn, cfg *tls.Config) error {
return doHandshake(tlsConn, cfg)
}