Lines Matching refs:cb
42 static void realm_parse(struct xt_option_call *cb)
44 struct xt_realm_info *realminfo = cb->data;
48 xtables_option_parse(cb);
49 realminfo->id = strtoul(cb->arg, &end, 0);
50 if (end != cb->arg && (*end == '/' || *end == '\0')) {
55 if (*end != '\0' || end == cb->arg)
57 "Bad realm value \"%s\"", cb->arg);
59 id = xtables_lmap_name2id(realms, cb->arg);
62 "Realm \"%s\" not found", cb->arg);
66 if (cb->invert)