Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for proxyUser (0.11 sec)

  1. src/net/http/transport.go

    }
    
    func (cm *connectMethod) key() connectMethodKey {
    	proxyStr := ""
    	targetAddr := cm.targetAddr
    	if cm.proxyURL != nil {
    		proxyStr = cm.proxyURL.String()
    		if (cm.proxyURL.Scheme == "http" || cm.proxyURL.Scheme == "https") && cm.targetScheme == "http" {
    			targetAddr = ""
    		}
    	}
    	return connectMethodKey{
    		proxy:  proxyStr,
    		scheme: cm.targetScheme,
    		addr:   targetAddr,
    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