3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-13 18:55:55 +00:00

13 lines
233 B
C
Raw Normal View History

// 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-15 21:16:25 +05:00
SEC("xdp/handler")
int xdp_handler(struct xdp_md *xdp)
{
return 0;
}