Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for useProxy (0.08 sec)

  1. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    		return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)
    	}
    	return proxyURL, nil
    }
    
    // useProxy reports whether requests to addr should use a proxy,
    // according to the NO_PROXY or no_proxy environment variable.
    // addr is always a canonicalAddr with a host and port.
    func (cfg *config) useProxy(addr string) bool {
    	if len(addr) == 0 {
    		return true
    	}
    	host, port, err := net.SplitHostPort(addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top