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

9 uses

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

	net/http
		h2_bundle.go#L9701: 	if trace == nil || trace.GotConn == nil {
		h2_bundle.go#L9713: 	trace.GotConn(ci)
		transport.go#L1358: 		if pc.alt == nil && trace != nil && trace.GotConn != nil {
		transport.go#L1359: 			trace.GotConn(pc.gotIdleConnTrace(pc.idleAt))
		transport.go#L1379: 		if w.pc != nil && w.pc.alt == nil && trace != nil && trace.GotConn != nil {
		transport.go#L1380: 			trace.GotConn(httptrace.GotConnInfo{Conn: w.pc.conn, Reused: w.pc.isReused()})

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