Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Seth (0.26 sec)

  1. cni/pkg/ebpf/app/ambient_redirect.bpf.c

            return TC_ACT_SHOT;
    
        capture_dns = zi->flag & CAPTURE_DNS_FLAG;
    
        if (data + sizeof(*eth) > data_end)
            return TC_ACT_OK;
    
        // TODO: support ipv6
        if (eth->h_proto != bpf_htons(ETH_P_IP))
            return TC_ACT_OK;
    
        iph = data + sizeof(*eth);
        if (data + sizeof(*eth) + sizeof(*iph) > data_end)
            return TC_ACT_OK;
    
        host_info = get_host_ip(0);
    C
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Thu Dec 14 02:11:31 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  2. cni/pkg/ebpf/server/redirectionServer_linux.go

    }
    
    func (r *RedirectServer) attachTCForZtunnel(ifindex, peerIndex uint32, namespace string) error {
    	// attach to ztunnel host veth's ingress
    	if err := r.attachTC("", ifindex, "ingress", r.ztunnelHostingressFd, r.ztunnelHostingressProgName); err != nil {
    		return err
    	}
    	// attach to ztunnel veth's ingress in POD namespace
    	if err := r.attachTC(namespace, peerIndex, "ingress", r.ztunnelIngressFd, r.ztunnelIngressProgName); err != nil {
    Go
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Thu Dec 14 02:11:31 GMT 2023
    - 20K bytes
    - Viewed (0)
  3. RELEASE.md

    Park, Dragan Mladjenovic, Eli Kobrin, Fadi Arafeh, Feiyue Chen, Frédéric Bastien, guozhong.zhuang, halseycamilla, Harshavardhan Bellamkonda, James Ward, jameshollyer, Jane Liu, johnnkp, jswag180, justkw, Kanvi Khanna, Keith Smiley, Koan-Sin Tan, Kulin Seth, Kun-Lu, kushanam, Lu Teng, mdfaijul, Mehdi Drissi, mgokulkrish, mraunak, Mustafa Uzun, Namrata Bhave, Pavel Emeliyanenko, pemeliya, Peng Sun, Philipp Hack, Pratik Joshi, Rahul Batra, Raunak, redwrasse, Saoirse Stewart, SaoirseARM, seanshpark, Shanbin...
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  4. cni/pkg/ambient/net_linux.go

    }
    
    func getVethWithDestinationOf(ip string) (*netlink.Veth, error) {
    	link, err := getLinkWithDestinationOf(ip)
    	if err != nil {
    		return nil, err
    	}
    	veth, ok := link.(*netlink.Veth)
    	if !ok {
    		return nil, errors.New("not veth implemented CNI")
    	}
    	return veth, nil
    }
    
    func findVethLinkForPeerIP(peerIP net.IP) (*netlink.Veth, error) {
    	links, err := netlink.LinkList()
    	if err != nil {
    Go
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Mon Dec 04 17:04:00 GMT 2023
    - 46.4K bytes
    - Viewed (0)
  5. cni/pkg/ebpf/server/options.go

    type RedirectArgs struct {
    	// IPAddrs is IP address list of the POD
    	IPAddrs []netip.Addr
    
    	// MacAddr is mac address of veth in POD namespace
    	MacAddr net.HardwareAddr
    
    	// Ifindex is ifIndex of veth in host namespace
    	Ifindex int
    
    	// PeerIndex is ifIndex of veth in POD namespace
    	PeerIndex int
    
    	// IsZtunnel indicates if the POD is ztunnel
    	IsZtunnel bool
    
    	// PeerNs is POD's network namespace
    Go
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Fri Feb 24 05:06:56 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  6. cni/pkg/ambient/server.go

    		// Do we care about that?
    		veth, err := getVethWithDestinationOf(activePod.Status.PodIP)
    		if err != nil {
    			return fmt.Errorf("failed to get veth device: %v", err)
    		}
    		geneveDstPort := determineDstPortForGeneveLink(net.ParseIP(activePod.Status.PodIP), constants.InboundTunVNI, constants.OutboundTunVNI)
    		// Create node-level networking rules for redirection
    Go
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Tue Nov 21 01:17:13 GMT 2023
    - 8.7K bytes
    - Viewed (0)
  7. cni/pkg/ebpf/app/ambient_redirect.h

    #define ZTUNNEL_OUTBOUND_PORT (15001)
    
    // Limited to 1K pods per node
    #define MAX_PODS_PER_NODE (1024)
    #define APP_INFO_MAP_SIZE MAX_PODS_PER_NODE
    
    #define ETH_ALEN 6
    #define BPF_F_CURRENT_NETNS (-1L)
    #define TC_ACT_OK       0
    #define TC_ACT_SHOT     2
    #define ETH_P_IP        (0x0800)
    #define UDP_P_DNS       (53)
    // #define PIN_GLOBAL_NS   2
    
    #define CAPTURE_DNS_FLAG (1<<0)
    
    #ifndef __inline
    C
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Tue May 02 17:37:36 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Q Misell <******@****.***>
    musician.io
    // Submitted by Matthias Merkel <******@****.***>
    novecore.site
    
    // staticland : https://static.land
    // Submitted by Seth Vincent <******@****.***>
    static.land
    dev.static.land
    sites.static.land
    
    // Storebase : https://www.storebase.io
    // Submitted by Tony Schirmer <******@****.***>
    storebase.store
    
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  9. api/go1.txt

    pkg syscall (linux-386), const ETH_P_CUST ideal-int
    pkg syscall (linux-386), const ETH_P_DDCMP ideal-int
    pkg syscall (linux-386), const ETH_P_DEC ideal-int
    pkg syscall (linux-386), const ETH_P_DIAG ideal-int
    pkg syscall (linux-386), const ETH_P_DNA_DL ideal-int
    pkg syscall (linux-386), const ETH_P_DNA_RC ideal-int
    pkg syscall (linux-386), const ETH_P_DNA_RT ideal-int
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. api/go1.1.txt

    pkg syscall (linux-386), const ETH_P_DDCMP = 6
    pkg syscall (linux-386), const ETH_P_DEC = 24576
    pkg syscall (linux-386), const ETH_P_DIAG = 24581
    pkg syscall (linux-386), const ETH_P_DNA_DL = 24577
    pkg syscall (linux-386), const ETH_P_DNA_RC = 24578
    pkg syscall (linux-386), const ETH_P_DNA_RT = 24579
    pkg syscall (linux-386), const ETH_P_DSA = 27
    pkg syscall (linux-386), const ETH_P_ECONET = 24
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top