net/http.Transport.TLSClientConfig (field)

28 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)

	net/http/httptest
		server.go#L175: 		TLSClientConfig: &tls.Config{

	github.com/aws/aws-sdk-go/aws/session
		session.go#L554: 	if t.TLSClientConfig == nil {
		session.go#L555: 		t.TLSClientConfig = &tls.Config{}
		session.go#L557: 	t.TLSClientConfig.RootCAs = p

	golang.org/x/net/http2
		transport.go#L181: 	if t1.TLSClientConfig == nil {
		transport.go#L182: 		t1.TLSClientConfig = new(tls.Config)
		transport.go#L184: 	if !strSliceContains(t1.TLSClientConfig.NextProtos, "h2") {
		transport.go#L185: 		t1.TLSClientConfig.NextProtos = append([]string{"h2"}, t1.TLSClientConfig.NextProtos...)
		transport.go#L187: 	if !strSliceContains(t1.TLSClientConfig.NextProtos, "http/1.1") {
		transport.go#L188: 		t1.TLSClientConfig.NextProtos = append(t1.TLSClientConfig.NextProtos, "http/1.1")

	golang.org/x/pkgsite/internal/testing/testhelper
		testhelper.go#L65: 			TLSClientConfig: &tls.Config{

	google.golang.org/api/transport/http
		dial.go#L185: 		trans.TLSClientConfig = &tls.Config{