1
0
Files
kernel-49/net/core/ndm/ntc_shaper_hooks.c
2021-04-20 16:48:16 +03:00

20 lines
533 B
C

#include <linux/module.h>
#include <linux/ntc_shaper_hooks.h>
DEFINE_RWLOCK(ntc_shaper_lock);
EXPORT_SYMBOL(ntc_shaper_lock);
ntc_shaper_hook_fn *ntc_shaper_ingress_hook = NULL;
EXPORT_SYMBOL(ntc_shaper_ingress_hook);
ntc_shaper_hook_fn *ntc_shaper_egress_hook = NULL;
EXPORT_SYMBOL(ntc_shaper_egress_hook);
ntc_shaper_bound_hook_fn *ntc_shaper_check_bound_hook = NULL;
EXPORT_SYMBOL(ntc_shaper_check_bound_hook);
#ifdef CONFIG_NF_CONNTRACK_CUSTOM
enum nf_ct_ext_id nf_ct_ext_id_ntc = 0;
EXPORT_SYMBOL(nf_ct_ext_id_ntc);
#endif