http urls monitor.

trace_17.go 221B

12345678910111213
  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. }