Home | History | Annotate | Download | only in extensions

Lines Matching refs:cb

57 static void connlimit_parse(struct xt_option_call *cb, uint8_t family)
59 struct xt_connlimit_info *info = cb->data;
60 const unsigned int revision = (*cb->match)->u.user.revision;
62 xtables_option_parse(cb);
63 switch (cb->entry->id) {
65 if (cb->invert)
69 if (!cb->invert)
89 static void connlimit_parse4(struct xt_option_call *cb)
91 return connlimit_parse(cb, NFPROTO_IPV4);
94 static void connlimit_parse6(struct xt_option_call *cb)
96 return connlimit_parse(cb, NFPROTO_IPV6);
99 static void connlimit_check(struct xt_fcheck_call *cb)
101 if ((cb->xflags & (F_UPTO | F_ABOVE)) == 0)