Sign in
android
/
platform
/
external
/
rust
/
crates
/
libbpf-rs
/
bc602007cf92a42d095fb41a4aaa27e708df75e8
/
.
/
tests
/
bin
/
src
/
tc-unit.bpf.c
blob: 0756c9c75f759a76645266afeef12f6a887a954d [
file
] [
log
] [
blame
]
#include
"vmlinux.h"
#include
<bpf/bpf_helpers.h>
//#include <linux/pkt_cls.h>
#define
TC_ACT_UNSPEC
(-
1
)
SEC
(
"tc"
)
int
handle_tc
(
struct
__sk_buff
*
skb
)
{
return
TC_ACT_UNSPEC
;
}