Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ipv6LinkLocalUnicastTCPTests (0.53 sec)

  1. src/net/main_test.go

    		if runtime.GOOS != "dragonfly" {
    			ipv6LinkLocalUnicastTCPTests = append(ipv6LinkLocalUnicastTCPTests, []ipv6LinkLocalUnicastTest{
    				{"tcp", "[" + addr + "%" + ifi.Name + "]:0", false},
    			}...)
    			ipv6LinkLocalUnicastUDPTests = append(ipv6LinkLocalUnicastUDPTests, []ipv6LinkLocalUnicastTest{
    				{"udp", "[" + addr + "%" + ifi.Name + "]:0", false},
    			}...)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/net/tcpsock_test.go

    		}
    	}
    }
    
    func TestIPv6LinkLocalUnicastTCP(t *testing.T) {
    	testenv.MustHaveExternalNetwork(t)
    
    	if !supportsIPv6() {
    		t.Skip("IPv6 is not supported")
    	}
    
    	for i, tt := range ipv6LinkLocalUnicastTCPTests {
    		ln, err := Listen(tt.network, tt.address)
    		if err != nil {
    			// It might return "LookupHost returned no
    			// suitable address" error on some platforms.
    			t.Log(err)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top