github.com/gorilla/websocket v1.4.0

This commit is contained in:
Jordan Liggitt
2019-06-22 11:41:53 -07:00
parent 29853a1976
commit 63e5ad08aa
30 changed files with 1003 additions and 316 deletions

12
vendor/github.com/gorilla/websocket/trace_17.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +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)
}