net/http.Transport.TLSClientConfig (field)

14 uses

	net/http (current package)
		h2_bundle.go#L7327: 	if t1.TLSClientConfig == nil {
		h2_bundle.go#L7328: 		t1.TLSClientConfig = new(tls.Config)
		h2_bundle.go#L7330: 	if !http2strSliceContains(t1.TLSClientConfig.NextProtos, "h2") {
		h2_bundle.go#L7331: 		t1.TLSClientConfig.NextProtos = append([]string{"h2"}, t1.TLSClientConfig.NextProtos...)
		h2_bundle.go#L7333: 	if !http2strSliceContains(t1.TLSClientConfig.NextProtos, "http/1.1") {
		h2_bundle.go#L7334: 		t1.TLSClientConfig.NextProtos = append(t1.TLSClientConfig.NextProtos, "http/1.1")
		transport.go#L174: 	TLSClientConfig *tls.Config
		transport.go#L338: 	if t.TLSClientConfig != nil {
		transport.go#L339: 		t2.TLSClientConfig = t.TLSClientConfig.Clone()
		transport.go#L396: 	if !t.ForceAttemptHTTP2 && (t.TLSClientConfig != nil || t.Dial != nil || t.DialContext != nil || t.hasCustomTLSDialer()) {
		transport.go#L1535: 	cfg := cloneTLSConfig(pconn.t.TLSClientConfig)