(trace *httptrace.ClientTrace, err error)
| 69 | } |
| 70 | |
| 71 | func traceWroteRequest(trace *httptrace.ClientTrace, err error) { |
| 72 | if trace != nil && trace.WroteRequest != nil { |
| 73 | trace.WroteRequest(httptrace.WroteRequestInfo{Err: err}) |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | func traceConnectStart(trace *httptrace.ClientTrace, network, addr string) { |
| 78 | if trace != nil && trace.ConnectStart != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…