Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addType (0.14 sec)

  1. pkg/proxy/iptables/proxier_test.go

    	if rule.SourceAddress != nil && !addressMatches(tracer.t, rule.SourceAddress, sourceIP) {
    		return false
    	}
    	if rule.SourceType != nil {
    		addrtype := "not-matched"
    		if tracer.localIPs.Has(sourceIP) {
    			addrtype = "LOCAL"
    		}
    		if !rule.SourceType.Matches(addrtype) {
    			return false
    		}
    	}
    
    	if rule.Protocol != nil && !rule.Protocol.Matches(protocol) {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Flags          uint16
    	Ifindex        uint32
    	Queue_id       uint32
    	Shared_umem_fd uint32
    }
    
    type RawSockaddrPPPoX [0x1e]byte
    
    type RawSockaddrTIPC struct {
    	Family   uint16
    	Addrtype uint8
    	Scope    int8
    	Addr     [12]byte
    }
    
    type RawSockaddrL2TPIP struct {
    	Family  uint16
    	Unused  uint16
    	Addr    [4]byte /* in_addr */
    	Conn_id uint32
    	_       [4]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top