2021-10-27 13:46:41 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include <linux/bpf.h>
|
|
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
|
|
|
|
/* Dummy prog to test TC-BPF API */
|
|
|
|
|
2022-03-05 16:17:59 +00:00
|
|
|
SEC("tc")
|
2021-10-27 13:46:41 +00:00
|
|
|
int cls(struct __sk_buff *skb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|