Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ProxyFromEnvironment (0.24 sec)

  1. src/net/http/transport.go

    // as directed by the environment variables HTTP_PROXY, HTTPS_PROXY
    // and NO_PROXY (or the lowercase versions thereof).
    var DefaultTransport RoundTripper = &Transport{
    	Proxy: ProxyFromEnvironment,
    	DialContext: defaultTransportDialContext(&net.Dialer{
    		Timeout:   30 * time.Second,
    		KeepAlive: 30 * time.Second,
    	}),
    	ForceAttemptHTTP2:     true,
    	MaxIdleConns:          100,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top