Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ipv6LinkLocalUnicastUDPTests (0.26 sec)

  1. src/net/main_test.go

    			}...)
    			ipv6LinkLocalUnicastUDPTests = append(ipv6LinkLocalUnicastUDPTests, []ipv6LinkLocalUnicastTest{
    				{"udp", "[" + addr + "%" + ifi.Name + "]:0", false},
    			}...)
    		}
    		ipv6LinkLocalUnicastTCPTests = append(ipv6LinkLocalUnicastTCPTests, []ipv6LinkLocalUnicastTest{
    			{"tcp6", "[" + 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/udpsock_test.go

    		}
    	}
    }
    
    func TestIPv6LinkLocalUnicastUDP(t *testing.T) {
    	testenv.MustHaveExternalNetwork(t)
    
    	if !supportsIPv6() {
    		t.Skip("IPv6 is not supported")
    	}
    
    	for i, tt := range ipv6LinkLocalUnicastUDPTests {
    		c1, err := ListenPacket(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: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top