Lines Matching refs:cb
67 static void NFQUEUE_parse(struct xt_option_call *cb)
69 xtables_option_parse(cb);
70 if (cb->entry->id == O_QUEUE_BALANCE)
75 static void NFQUEUE_parse_v1(struct xt_option_call *cb)
77 struct xt_NFQ_info_v1 *info = cb->data;
78 const uint16_t *r = cb->val.u16_range;
80 xtables_option_parse(cb);
81 switch (cb->entry->id) {
83 if (cb->nvals != 2)
85 "Bad range \"%s\"", cb->arg);
95 static void NFQUEUE_parse_v2(struct xt_option_call *cb)
97 struct xt_NFQ_info_v2 *info = cb->data;
99 NFQUEUE_parse_v1(cb);
100 switch (cb->entry->id) {
107 static void NFQUEUE_parse_v3(struct xt_option_call *cb)
109 struct xt_NFQ_info_v3 *info = cb->data;
111 NFQUEUE_parse_v2(cb);
112 switch (cb->entry->id) {