1
0
mirror of https://github.com/rancher/steve.git synced 2025-07-22 02:22:01 +00:00
steve/vendor/github.com/gorilla/websocket/trace_17.go
Darren Shepherd cc1e4e52a0 Update vendor
2020-02-21 22:19:07 -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)
}