Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LOGICAL (0.06 sec)

  1. src/vendor/golang.org/x/net/nettest/nettest.go

    		return nil, errNoAvailableAddress
    	}
    	ip, ok := hasRoutableIP(network, ifi)
    	if !ok {
    		return nil, errNoAvailableAddress
    	}
    	return ip, nil
    }
    
    // LoopbackInterface returns an available logical network interface
    // for loopback test.
    func LoopbackInterface() (*net.Interface, error) {
    	ift, err := net.Interfaces()
    	if err != nil {
    		return nil, errNoAvailableInterface
    	}
    	for _, ifi := range ift {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top