Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
a0bb32e78d21ffeca39c2344ff377c8276e4aee8
/
.
/
crates
/
libbpf-rs
/
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
;
}