net/http.Transport.MaxResponseHeaderBytes (field)

10 uses

	net/http (current package)
		h2_bundle.go#L7491: 	if t.t1 != nil && t.t1.MaxResponseHeaderBytes != 0 {
		h2_bundle.go#L7492: 		n = t.t1.MaxResponseHeaderBytes
		h2_bundle.go#L9744: 			if t1 := cs.cc.t.t1; t1 != nil && t1.MaxResponseHeaderBytes > limit {
		h2_bundle.go#L9745: 				limit = t1.MaxResponseHeaderBytes
		transport.go#L276: 	MaxResponseHeaderBytes int64
		transport.go#L330: 	if t.MaxResponseHeaderBytes > 0 {
		transport.go#L331: 		return t.MaxResponseHeaderBytes
		transport.go#L357: 		MaxResponseHeaderBytes: t.MaxResponseHeaderBytes,
		transport.go#L447: 	if limit1 := t.MaxResponseHeaderBytes; limit1 != 0 && t2.MaxHeaderListSize == 0 {