1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-28 11:01:28 +00:00
steve/vendor/github.com/gorilla/websocket/trace_17.go
2019-08-04 10:41:32 -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)
}