2021-10-27 18:46:41 +05:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright (c) 2020 Facebook */
|
|
|
|
#include <linux/bpf.h>
|
|
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
|
|
|
|
char LICENSE[] SEC("license") = "GPL";
|
|
|
|
|
2022-03-05 21:17:59 +05:00
|
|
|
SEC("xdp")
|
2021-10-27 18:46:41 +05:00
|
|
|
int xdp_handler(struct xdp_md *xdp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2022-03-05 21:17:59 +05:00
|
|
|
|
|
|
|
SEC("tc")
|
|
|
|
int tc_handler(struct __sk_buff *skb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|