Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CanonicalAddr (0.18 sec)

  1. staging/src/k8s.io/apimachinery/third_party/forked/golang/netutil/addr.go

    var portMap = map[string]string{
    	"http":   "80",
    	"https":  "443",
    	"socks5": "1080",
    }
    
    // FROM: http://golang.org/src/net/http/transport.go
    // canonicalAddr returns url.Host but always with a ":port" suffix
    func CanonicalAddr(url *url.URL) string {
    	addr := url.Host
    	if !hasPort(addr) {
    		return addr + ":" + portMap[url.Scheme]
    	}
    	return addr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 21 10:49:41 UTC 2022
    - 723 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	}
    }
    
    var portMap = map[string]string{
    	"http":   "80",
    	"https":  "443",
    	"socks5": "1080",
    }
    
    // canonicalAddr returns url.Host but always with a ":port" suffix
    func canonicalAddr(url *url.URL) string {
    	addr := url.Hostname()
    	if v, err := idnaASCII(addr); err == nil {
    		addr = v
    	}
    	port := url.Port()
    	if port == "" {
    		port = portMap[url.Scheme]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    func (s *SpdyRoundTripper) dialWithSocks5Proxy(req *http.Request, proxyURL *url.URL) (net.Conn, error) {
    	// ensure we use a canonical host with proxyReq
    	targetHost := netutil.CanonicalAddr(req.URL)
    	proxyDialAddr := netutil.CanonicalAddr(proxyURL)
    
    	var auth *proxy.Auth
    	if proxyURL.User != nil {
    		pass, _ := proxyURL.User.Password()
    		auth = &proxy.Auth{
    			User:     proxyURL.User.Username(),
    			Password: pass,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    // TLSConfig of the http.Transport
    func DialURL(ctx context.Context, url *url.URL, transport http.RoundTripper) (net.Conn, error) {
    	dialAddr := netutil.CanonicalAddr(url)
    
    	dialer, err := utilnet.DialerFor(transport)
    	if err != nil {
    		klog.V(5).Infof("Unable to unwrap transport %T to get dialer: %v", transport, err)
    	}
    
    	switch url.Scheme {
    	case "http":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    func idnaASCIIFromURL(url *url.URL) string {
    	addr := url.Hostname()
    	if v, err := idnaASCII(addr); err == nil {
    		addr = v
    	}
    	return addr
    }
    
    // canonicalAddr returns url.Host but always with a ":port" suffix.
    func canonicalAddr(url *url.URL) string {
    	port := url.Port()
    	if port == "" {
    		port = portMap[url.Scheme]
    	}
    	return net.JoinHostPort(idnaASCIIFromURL(url), port)
    }
    
    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