Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 103 for igmp (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go

    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    	{"net.inet.icmp.errppslimit", []_C_int{4, 2, 1, 3}},
    	{"net.inet.icmp.maskrepl", []_C_int{4, 2, 1, 1}},
    	{"net.inet.icmp.rediraccept", []_C_int{4, 2, 1, 4}},
    	{"net.inet.icmp.redirtimeout", []_C_int{4, 2, 1, 5}},
    	{"net.inet.icmp.stats", []_C_int{4, 2, 1, 7}},
    	{"net.inet.icmp.tstamprepl", []_C_int{4, 2, 1, 6}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go

    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    	{"net.inet.icmp.errppslimit", []_C_int{4, 2, 1, 3}},
    	{"net.inet.icmp.maskrepl", []_C_int{4, 2, 1, 1}},
    	{"net.inet.icmp.rediraccept", []_C_int{4, 2, 1, 4}},
    	{"net.inet.icmp.redirtimeout", []_C_int{4, 2, 1, 5}},
    	{"net.inet.icmp.stats", []_C_int{4, 2, 1, 7}},
    	{"net.inet.icmp.tstamprepl", []_C_int{4, 2, 1, 6}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/net/lookup.go

    //
    // See https://www.iana.org/assignments/protocol-numbers
    //
    // On Unix, this map is augmented by readProtocols via lookupProtocol.
    var protocols = map[string]int{
    	"icmp":      1,
    	"igmp":      2,
    	"tcp":       6,
    	"udp":       17,
    	"ipv6-icmp": 58,
    }
    
    // services contains minimal mappings between services names and port
    // numbers for platforms that don't have a complete list of port numbers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. src/net/lookup_test.go

    func TestLookupProtocol_Minimal(t *testing.T) {
    	type test struct {
    		name string
    		want int
    	}
    	var tests = []test{
    		{"tcp", 6},
    		{"TcP", 6}, // case shouldn't matter
    		{"icmp", 1},
    		{"igmp", 2},
    		{"udp", 17},
    		{"ipv6-icmp", 58},
    	}
    
    	for _, tt := range tests {
    		got, err := lookupProtocol(context.Background(), tt.name)
    		if got != tt.want || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. misc/cgo/gmp/gmp.go

    hand a Go pointer to C code but must separately arrange for
    Go to hang on to a reference to the pointer until C is done with it.
    */
    package gmp
    
    /*
    #cgo LDFLAGS: -lgmp
    #include <gmp.h>
    #include <stdlib.h>
    
    // gmp 5.0.0+ changed the type of the 3rd argument to mp_bitcnt_t,
    // so, to support older versions, we wrap these two functions.
    void _mpz_mul_2exp(mpz_ptr a, mpz_ptr b, unsigned long n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. src/net/testdata/igmp6

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  7. src/net/iprawsock_test.go

    			}
    		}
    	}
    }
    
    var ipConnLocalNameTests = []struct {
    	net   string
    	laddr *IPAddr
    }{
    	{"ip4:icmp", &IPAddr{IP: IPv4(127, 0, 0, 1)}},
    	{"ip4:icmp", &IPAddr{}},
    	{"ip4:icmp", nil},
    }
    
    func TestIPConnLocalName(t *testing.T) {
    	for _, tt := range ipConnLocalNameTests {
    		if !testableNetwork(tt.net) {
    			t.Logf("skipping %s test", tt.net)
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. cmd/import-boss/main.go

    	direct, indirect := transitiveImports(pkg)
    	isDirect := map[string]bool{}
    	for _, imp := range direct {
    		isDirect[imp] = true
    	}
    	relate := func(imp string) string {
    		if isDirect[imp] {
    			return "->"
    		}
    		return "-->"
    	}
    
    	var errs []error
    	for _, imp := range uniq(direct, indirect) {
    		if unmassage(imp) == realPkgPath {
    			// Tests in package "foo_test" depend on the test package for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                              type: array
                          type: object
                        icmp:
                          description: ICMP is an optional field that restricts the rule
                            to apply to a specific type and code of ICMP traffic.  This
                            should only be specified if the Protocol field is set to "ICMP"
                            or "ICMPv6".
                          properties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  10. src/go/types/resolver_test.go

    	imported map[string]bool
    }
    
    func (imp *resolveTestImporter) Import(string) (*Package, error) {
    	panic("should not be called")
    }
    
    func (imp *resolveTestImporter) ImportFrom(path, srcDir string, mode ImportMode) (*Package, error) {
    	if mode != 0 {
    		panic("mode must be 0")
    	}
    	if imp.importer == nil {
    		imp.importer = importer.Default().(ImporterFrom)
    		imp.imported = make(map[string]bool)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top