https://github.com/cilium/cilium
Raw File
Tip revision: 31fd82bd487db9cedb24a2db21993477e34c5c1c authored by Gilberto Bertin on 12 August 2022, 15:17:38 UTC
iptables: skip NOTRACK rules deletion
Tip revision: 31fd82b
bpf_features.h
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) 2016-2020 Authors of Cilium */
#ifndef BPF_FEATURES_H_
#define BPF_FEATURES_H_

#define HAVE_PROG_TYPE_HELPER(prog_type, helper)	\
	BPF__PROG_TYPE_ ## prog_type ## __HELPER_ ## helper
#define BPF__PROG_TYPE_sched_cls__HELPER_bpf_skb_change_tail 1

#endif /* BPF_FEATURES_H_ */
back to top