• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/

Lines Matching refs:matches

198 /* Keeping track of external matches and targets: linked lists.  */
322 exit_printhelp(struct ip6tables_rule_match *matches)
389 specified matches & targets */
396 for (matchp = matches; matchp; matchp = matchp->next) {
738 find_match(const char *match_name, enum ip6t_tryload tryload, struct ip6tables_rule_match **matches)
805 if (ptr && matches) {
811 for (i = matches; *i; i = &(*i)->next) {
826 find_proto(const char *pname, enum ip6t_tryload tryload, int nolookup, struct ip6tables_rule_match **matches)
834 return find_match(protoname, tryload, matches);
836 return find_match(pname, tryload, matches);
1530 make_delete_mask(struct ip6t_entry *fw, struct ip6tables_rule_match *matches)
1538 for (matchp = matches; matchp; matchp = matchp->next)
1548 for (matchp = matches; matchp; matchp = matchp->next) {
1571 struct ip6tables_rule_match *matches)
1577 mask = make_delete_mask(fw, matches);
1802 struct ip6tables_rule_match *matches,
1810 for (matchp = matches; matchp; matchp = matchp->next)
1819 for (matchp = matches; matchp; matchp = matchp->next) {
1828 void clear_rule_matches(struct ip6tables_rule_match **matches)
1832 for (matchp = *matches; matchp;) {
1846 *matches = NULL;
1872 struct ip6tables_rule_match *matches = NULL;
1887 * (we clear the global list of all matches for security)*/
2029 if (!matches && protocol)
2030 find_match(protocol, TRY_LOAD, &matches);
2032 exit_printhelp(matches);
2131 m = find_match(optarg, LOAD_MUST_SUCCEED, &matches);
2141 /* Merge options for non-cloned matches */
2225 for (matchp = matches; matchp; matchp = matchp->next) {
2270 options&OPT_NUMERIC, &matches))) {
2303 for (matchp = matches; matchp; matchp = matchp->next)
2424 e = generate_entry(&fw, matches, target->t);
2440 handle, matches);
2501 clear_rule_matches(&matches);