net/http.Transport.TLSClientConfig (field)

14 uses

	net/http (current package)
		h2_bundle.go#L7426: 	if t1.TLSClientConfig == nil {
		h2_bundle.go#L7427: 		t1.TLSClientConfig = new(tls.Config)
		h2_bundle.go#L7429: 	if !http2strSliceContains(t1.TLSClientConfig.NextProtos, "h2") {
		h2_bundle.go#L7430: 		t1.TLSClientConfig.NextProtos = append([]string{"h2"}, t1.TLSClientConfig.NextProtos...)
		h2_bundle.go#L7432: 	if !http2strSliceContains(t1.TLSClientConfig.NextProtos, "http/1.1") {
		h2_bundle.go#L7433: 		t1.TLSClientConfig.NextProtos = append(t1.TLSClientConfig.NextProtos, "http/1.1")
		transport.go#L181: 	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#L1631: 	cfg := cloneTLSConfig(pconn.t.TLSClientConfig)