Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IPv6linklocalallrouters (0.22 sec)

  1. src/net/ip_test.go

    	{IPv4(240, 0, 0, 1), true, false},
    	{IPv6unspecified, false, true},
    	{IPv6loopback, false, true},
    	{IPv6interfacelocalallnodes, false, true},
    	{IPv6linklocalallnodes, false, true},
    	{IPv6linklocalallrouters, false, true},
    	{ParseIP("ff05::a:b:c:d"), false, true},
    	{ParseIP("fe80::1:2:3:4"), false, true},
    	{ParseIP("2001:db8::123:12:1"), false, true},
    }
    
    func TestIPAddrFamily(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    		},
    		{
    			name: "IPv6 link-local all nodes",
    			ip:   IPv6LinkLocalAllNodes(),
    			std:  net.IPv6linklocalallnodes,
    		},
    		{
    			name: "IPv6 link-local all routers",
    			ip:   IPv6LinkLocalAllRouters(),
    			std:  net.IPv6linklocalallrouters,
    		},
    		{
    			name: "IPv6 loopback",
    			ip:   IPv6Loopback(),
    			std:  net.IPv6loopback,
    		},
    		{
    			name: "IPv6 unspecified",
    			ip:   IPv6Unspecified(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. src/net/ip.go

    	IPv6interfacelocalallnodes = IP{0xff, 0x01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
    	IPv6linklocalallnodes      = IP{0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
    	IPv6linklocalallrouters    = IP{0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x02}
    )
    
    // IsUnspecified reports whether ip is an unspecified address, either
    // the IPv4 address "0.0.0.0" or the IPv6 address "::".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    // address ff02::1.
    func IPv6LinkLocalAllNodes() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x01}) }
    
    // IPv6LinkLocalAllRouters returns the IPv6 link-local all routers multicast
    // address ff02::2.
    func IPv6LinkLocalAllRouters() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x02}) }
    
    // IPv6Loopback returns the IPv6 loopback address ::1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IPv4bcast", Var, 0},
    		{"IPv4len", Const, 0},
    		{"IPv4zero", Var, 0},
    		{"IPv6interfacelocalallnodes", Var, 0},
    		{"IPv6len", Const, 0},
    		{"IPv6linklocalallnodes", Var, 0},
    		{"IPv6linklocalallrouters", Var, 0},
    		{"IPv6loopback", Var, 0},
    		{"IPv6unspecified", Var, 0},
    		{"IPv6zero", Var, 0},
    		{"Interface", Type, 0},
    		{"Interface.Flags", Field, 0},
    		{"Interface.HardwareAddr", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top