Home | History | Annotate | Download | only in iptables

Lines Matching refs:match

127 	{ "match", 1, 0, 'm' },
375 " --match -m match\n"
376 " extended match (may load extension)\n"
384 /*"[!] --fragment -f match second or further fragments only\n"*/
400 matchp->match->help();
759 /* First match of this type: */
782 maybe they specified target as match. */
787 "Couldn't load match `%s'\n",
791 "Couldn't load match `%s':%s\n",
803 "Couldn't find match `%s'\n", name);
814 if (strcmp(name, (*i)->match->name) == 0)
817 newentry->match = ptr;
912 /* Include nul-terminator in match */
1053 maybe they specified match as a target. */
1157 fprintf(stderr, "%s: match `%s' v%s (I'm v%s).\n",
1173 "%s: match `%s' already registered.\n",
1193 fprintf(stderr, "%s: match `%s' has invalid size %u.\n",
1316 struct ip6tables_match *match = find_match(m->u.user.name, TRY_LOAD, NULL);
1318 if (match) {
1319 if (match->print)
1320 match->print(ip, m, numeric);
1322 printf("%s ", match->name);
1325 printf("UNKNOWN match `%s' ", m->u.user.name);
1543 size += IP6T_ALIGN(sizeof(struct ip6t_entry_match)) + matchp->match->size;
1555 + matchp->match->userspacesize);
1556 mptr += IP6T_ALIGN(sizeof(struct ip6t_entry_match)) + matchp->match->size;
1809 size += matchp->match->m->u.match_size;
1818 memcpy(e->elems + size, matchp->match->m, matchp->match->m->u.match_size);
1819 size += matchp->match->m->u.match_size;
1832 if (matchp->match->m) {
1833 free(matchp->match->m);
1834 matchp->match->m = NULL;
1836 if (matchp->match == matchp->match->next) {
1837 free(matchp->match);
1838 matchp->match = NULL;
2051 "rule would never match protocol");
2056 "use exension match instead.", protocol);
2126 "unexpected ! flag before --match");
2225 if (matchp->match->parse(c - matchp->match->option_offset,
2227 &matchp->match->mflags,
2230 &matchp->match->m))
2233 m = matchp ? matchp->match : NULL;
2242 * match or a target. However, we support
2243 * implicit loading of the protocol match
2245 * at the same time 'load tcp protocol match on
2250 * a match (m above)
2301 matchp->match->final_check(matchp->match->mflags);