net/http.Transport.TLSClientConfig (field)

14 uses

	net/http (current package)
		h2_bundle.go#L6683: 	if t1.TLSClientConfig == nil {
		h2_bundle.go#L6684: 		t1.TLSClientConfig = new(tls.Config)
		h2_bundle.go#L6686: 	if !http2strSliceContains(t1.TLSClientConfig.NextProtos, "h2") {
		h2_bundle.go#L6687: 		t1.TLSClientConfig.NextProtos = append([]string{"h2"}, t1.TLSClientConfig.NextProtos...)
		h2_bundle.go#L6689: 	if !http2strSliceContains(t1.TLSClientConfig.NextProtos, "http/1.1") {
		h2_bundle.go#L6690: 		t1.TLSClientConfig.NextProtos = append(t1.TLSClientConfig.NextProtos, "http/1.1")
		transport.go#L168: 	TLSClientConfig *tls.Config
		transport.go#L331: 	if t.TLSClientConfig != nil {
		transport.go#L332: 		t2.TLSClientConfig = t.TLSClientConfig.Clone()
		transport.go#L386: 	if !t.ForceAttemptHTTP2 && (t.TLSClientConfig != nil || t.Dial != nil || t.DialContext != nil || t.hasCustomTLSDialer()) {
		transport.go#L1510: 	cfg := cloneTLSConfig(pconn.t.TLSClientConfig)