diff options
-rw-r--r-- | include/linux/netfilter/nfnetlink.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/linux/netfilter/nfnetlink.h b/include/linux/netfilter/nfnetlink.h index cd8fded36550..0d8424f76899 100644 --- a/include/linux/netfilter/nfnetlink.h +++ b/include/linux/netfilter/nfnetlink.h | |||
@@ -73,19 +73,6 @@ struct nfnetlink_subsystem | |||
73 | extern int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n); | 73 | extern int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n); |
74 | extern int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n); | 74 | extern int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n); |
75 | 75 | ||
76 | #define nlattr_bad_size(tb, max, cta_min) \ | ||
77 | ({ int __i, __res = 0; \ | ||
78 | for (__i=1; __i <= max; __i++) { \ | ||
79 | if (!cta_min[__i]) \ | ||
80 | continue; \ | ||
81 | if (tb[__i] && nla_len(tb[__i]) < cta_min[__i]){ \ | ||
82 | __res = 1; \ | ||
83 | break; \ | ||
84 | } \ | ||
85 | } \ | ||
86 | __res; \ | ||
87 | }) | ||
88 | |||
89 | extern int nfnetlink_has_listeners(unsigned int group); | 76 | extern int nfnetlink_has_listeners(unsigned int group); |
90 | extern int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, | 77 | extern int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, |
91 | int echo); | 78 | int echo); |