• 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

202 /* Keeping track of external matches and targets: linked lists.  */
403 exit_printhelp(struct iptables_rule_match *matches)
474 results. So we call help for all specified matches & targets */
481 for (matchp = matches; matchp; matchp = matchp->next) {
726 find_match(const char *name, enum ipt_tryload tryload, struct iptables_rule_match **matches)
782 if (ptr && matches) {
788 for (i = matches; *i; i = &(*i)->next) {
803 find_proto(const char *pname, enum ipt_tryload tryload, int nolookup, struct iptables_rule_match **matches)
811 return find_match(protoname, tryload, matches);
813 return find_match(pname, tryload, matches);
1594 make_delete_mask(struct ipt_entry *fw, struct iptables_rule_match *matches)
1602 for (matchp = matches; matchp; matchp = matchp->next)
1612 for (matchp = matches; matchp; matchp = matchp->next) {
1635 struct iptables_rule_match *matches)
1641 mask = make_delete_mask(fw, matches);
1866 struct iptables_rule_match *matches,
1874 for (matchp = matches; matchp; matchp = matchp->next)
1883 for (matchp = matches; matchp; matchp = matchp->next) {
1892 void clear_rule_matches(struct iptables_rule_match **matches)
1896 for (matchp = *matches; matchp;) {
1910 *matches = NULL;
1951 struct iptables_rule_match *matches = NULL;
1966 * (we clear the global list of all matches for security)*/
2108 if (!matches && protocol)
2109 find_match(protocol, TRY_LOAD, &matches);
2111 exit_printhelp(matches);
2220 m = find_match(optarg, LOAD_MUST_SUCCEED, &matches);
2230 /* Merge options for non-cloned matches */
2314 for (matchp = matches; matchp; matchp = matchp->next) {
2359 options&OPT_NUMERIC, &matches))) {
2391 for (matchp = matches; matchp; matchp = matchp->next)
2520 e = generate_entry(&fw, matches, target->t);
2536 handle, matches);
2597 clear_rule_matches(&matches);