net/http/httptrace.ClientTrace.GotConn (field)

11 uses

	net/http/httptrace (current package)
		trace.go#L91: 	GotConn func(GotConnInfo)

	net/http
		h2_bundle.go#L9221: 	if trace == nil || trace.GotConn == nil {
		h2_bundle.go#L9233: 	trace.GotConn(ci)
		transport.go#L1351: 		if pc.alt == nil && trace != nil && trace.GotConn != nil {
		transport.go#L1352: 			trace.GotConn(pc.gotIdleConnTrace(pc.idleAt))
		transport.go#L1372: 		if w.pc != nil && w.pc.alt == nil && trace != nil && trace.GotConn != nil {
		transport.go#L1373: 			trace.GotConn(httptrace.GotConnInfo{Conn: w.pc.conn, Reused: w.pc.isReused()})

	github.com/prometheus/client_golang/prometheus/promhttp
		instrument_client.go#L140: 			GotConn: func(_ httptrace.GotConnInfo) {

	go.opencensus.io/plugin/ochttp
		span_annotating_client_trace.go#L46: 		GotConn:              sa.gotConn,

	golang.org/x/net/http2
		transport.go#L2717: 	if trace == nil || trace.GotConn == nil {
		transport.go#L2729: 	trace.GotConn(ci)