Select the types of activity you want to include in your feed.
1/* SPDX-License-Identifier: GPL-2.0 */ 2#pragma once 3 4#ifndef ETH_P_IP 5#define ETH_P_IP 0x0800 6#endif 7 8#ifndef ETH_P_IPV6 9#define ETH_P_IPV6 0x86DD 10#endif 11 12struct xdp_meta { 13 __u64 rx_timestamp; 14 __u32 rx_hash; 15};