brintos

brintos / linux-shallow public Read only

0
0
Text · 319 B · e4252fd Raw
20 lines · c
1// SPDX-License-Identifier: GPL-2.02 3#include <linux/bpf.h>4#include <bpf/bpf_helpers.h>5 6char _license[] SEC("license") = "GPL";7 8__u32 load_offset = 0;9int test_result = 0;10 11SEC("tc")12int skb_process(struct __sk_buff *skb)13{14	char buf[16];15 16	test_result = bpf_skb_load_bytes(skb, load_offset, buf, 10);17 18	return 0;19}20