Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 334 for dialIP (0.17 sec)

  1. src/net/iprawsock_test.go

    			}
    			a, err := ResolveIPAddr("ip", args[1])
    			if err != nil {
    				t.Errorf("ResolveIPAddr(\"ip\", %q) = %v", args[1], err)
    				continue
    			}
    			_, err = DialIP(args[0], nil, a)
    			if tt.shouldFail != (err != nil) {
    				t.Errorf("DialIP(%q, %v) = %v; want (err != nil) is %t", args[0], a, err, tt.shouldFail)
    			}
    			_, err = ListenIP(args[0], a)
    			if tt.shouldFail != (err != nil) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/net/iprawsock.go

    }
    
    func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
    
    // DialIP acts like [Dial] for IP networks.
    //
    // The network must be an IP network name; see func Dial for details.
    //
    // If laddr is nil, a local address is automatically chosen.
    // If the IP field of raddr is nil or an unspecified IP address, the
    // local system is assumed.
    func DialIP(network string, laddr, raddr *IPAddr) (*IPConn, error) {
    	if raddr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/net/iprawsock_plan9.go

    	return 0, syscall.EPLAN9
    }
    
    func (c *IPConn) writeMsg(b, oob []byte, addr *IPAddr) (n, oobn int, err error) {
    	return 0, 0, syscall.EPLAN9
    }
    
    func (sd *sysDialer) dialIP(ctx context.Context, laddr, raddr *IPAddr) (*IPConn, error) {
    	return nil, syscall.EPLAN9
    }
    
    func (sl *sysListener) listenIP(ctx context.Context, laddr *IPAddr) (*IPConn, error) {
    	return nil, syscall.EPLAN9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 23:57:04 UTC 2018
    - 874 bytes
    - Viewed (0)
  4. src/net/iprawsock_posix.go

    }
    
    func (sd *sysDialer) dialIP(ctx context.Context, laddr, raddr *IPAddr) (*IPConn, error) {
    	network, proto, err := parseNetwork(ctx, sd.network, true)
    	if err != nil {
    		return nil, err
    	}
    	switch network {
    	case "ip", "ip4", "ip6":
    	default:
    		return nil, UnknownNetworkError(sd.network)
    	}
    	ctrlCtxFn := sd.Dialer.ControlContext
    	if ctrlCtxFn == nil && sd.Dialer.Control != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/net/dial.go

    // When using TCP, and the host resolves to multiple IP addresses,
    // Dial will try each IP address in order until one succeeds.
    //
    // Examples:
    //
    //	Dial("tcp", "golang.org:http")
    //	Dial("tcp", "192.0.2.1:http")
    //	Dial("tcp", "198.51.100.1:80")
    //	Dial("udp", "[2001:db8::1]:domain")
    //	Dial("udp", "[fe80::1%lo0]:53")
    //	Dial("tcp", ":80")
    //
    // For IP networks, the network must be "ip", "ip4" or "ip6" followed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/net/error_test.go

    		return nil, &DNSError{Err: "dial error test", Name: "name", Server: "server", IsTimeout: true}
    	}
    	sw.Set(socktest.FilterConnect, func(so *socktest.Status) (socktest.AfterFilter, error) {
    		return nil, errOpNotSupported
    	})
    	defer sw.Set(socktest.FilterConnect, nil)
    
    	d := Dialer{Timeout: someTimeout}
    	for i, tt := range dialErrorTests {
    		i, tt := i, tt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. pkg/test/echo/common/dialer.go

    		return client.Do(req)
    	}
    	// DefaultTCPDialFunc just calls dialer.Dial, with no alterations to the arguments.
    	DefaultTCPDialFunc = func(dialer net.Dialer, ctx context.Context, address string) (net.Conn, error) {
    		return dialer.DialContext(ctx, "tcp", address)
    	}
    	// DefaultDialer is provides defaults for all dial functions.
    	DefaultDialer = Dialer{
    		GRPC:      DefaultGRPCDialFunc,
    		Websocket: DefaultWebsocketDialFunc,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 07 15:55:42 UTC 2020
    - 3K bytes
    - Viewed (0)
  8. pkg/hbone/dialer.go

    	return nil
    }
    
    // TLSDialWithDialer is an implementation of tls.DialWithDialer that accepts a generic Dialer
    func TLSDialWithDialer(dialer Dialer, network, addr string, config *tls.Config) (*tls.Conn, error) {
    	return tlsDial(context.Background(), dialer, network, addr, config)
    }
    
    func tlsDial(ctx context.Context, netDialer Dialer, network, addr string, config *tls.Config) (*tls.Conn, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    	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":
    		if dialer != nil {
    			return dialer(ctx, "tcp", dialAddr)
    		}
    		var d net.Dialer
    		return d.DialContext(ctx, "tcp", dialAddr)
    	case "https":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	}
    
    	return tlsConn, nil
    }
    
    // dialWithoutProxy dials the host specified by url, using TLS if appropriate.
    func (s *SpdyRoundTripper) dialWithoutProxy(ctx context.Context, url *url.URL) (net.Conn, error) {
    	dialAddr := netutil.CanonicalAddr(url)
    	dialer := s.Dialer
    	if dialer == nil {
    		dialer = &net.Dialer{}
    	}
    
    	if url.Scheme == "http" {
    		return dialer.DialContext(ctx, "tcp", dialAddr)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top