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.

trace_17.go 221B

123456789101112
  1. // +build !go1.8
  2. package websocket
  3. import (
  4. "crypto/tls"
  5. "net/http/httptrace"
  6. )
  7. func doHandshakeWithTrace(trace *httptrace.ClientTrace, tlsConn *tls.Conn, cfg *tls.Config) error {
  8. return doHandshake(tlsConn, cfg)
  9. }