• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iptables-1.4.12.1/iptables/

Lines Matching defs:options

140 /* Table of legal combinations of commands and options.  If any of the
210 "Usage: %s -[ACD] chain rule-specification [options]\n"
211 " %s -I chain [rulenum] rule-specification [options]\n"
212 " %s -R chain rulenum rule-specification [options]\n"
213 " %s -D chain rulenum [options]\n"
214 " %s -[LS] [chain [rulenum]] [options]\n"
215 " %s -[FZ] [chain] [options]\n"
218 " %s -P chain target [options]\n"
226 "Either long or short options are allowed.\n"
307 generic_opt_check(int command, int options)
311 /* Check that commands are valid with options. Complicated by the
322 if (!(options & (1<<i))) {
425 set_option(unsigned int *options, unsigned int option, uint8_t *invflg,
428 if (*options & option)
431 *options |= option;
1277 set_option(&cs->options, OPT_JUMP, &cs->fw6.ipv6.invflags, cs->invert);
1322 /* Merge options for non-cloned matches */
1369 /* Suppress error messages: we may add new options if we
1539 set_option(&cs.options, OPT_PROTOCOL, &cs.fw6.ipv6.invflags,
1564 set_option(&cs.options, OPT_SOURCE, &cs.fw6.ipv6.invflags,
1570 set_option(&cs.options, OPT_DESTINATION, &cs.fw6.ipv6.invflags,
1577 set_option(&cs.options, OPT_JUMP, &cs.fw6.ipv6.invflags,
1594 set_option(&cs.options, OPT_VIANAMEIN, &cs.fw6.ipv6.invflags,
1606 set_option(&cs.options, OPT_VIANAMEOUT, &cs.fw6.ipv6.invflags,
1615 set_option(&cs.options, OPT_VERBOSE,
1625 set_option(&cs.options, OPT_NUMERIC, &cs.fw6.ipv6.invflags,
1637 set_option(&cs.options, OPT_EXPANDED, &cs.fw6.ipv6.invflags,
1650 set_option(&cs.options, OPT_LINENUMBERS, &cs.fw6.ipv6.invflags,
1660 set_option(&cs.options, OPT_COUNTERS, &cs.fw6.ipv6.invflags,
1714 * If new options were loaded, we must retry
1729 /* Fix me: must put inverse options checking here --MN */
1741 if (!(cs.options & OPT_DESTINATION))
1743 if (!(cs.options & OPT_SOURCE))
1764 generic_opt_check(command, cs.options);
1792 if (cs.options & OPT_VIANAMEOUT)
1802 if (cs.options & OPT_VIANAMEIN)
1861 cs.options&OPT_VERBOSE,
1868 cs.options&OPT_VERBOSE,
1878 cs.options&OPT_VERBOSE,
1884 cs.options&OPT_VERBOSE, *handle);
1890 cs.options&OPT_VERBOSE,
1894 ret = flush_entries6(chain, cs.options&OPT_VERBOSE, *handle);
1897 ret = zero_entries(chain, cs.options&OPT_VERBOSE, *handle);
1907 cs.options&OPT_VERBOSE,
1908 cs.options&OPT_NUMERIC,
1909 cs.options&OPT_EXPANDED,
1910 cs.options&OPT_LINENUMBERS,
1914 cs.options&OPT_VERBOSE, *handle);
1923 cs.options&OPT_VERBOSE,
1927 cs.options&OPT_VERBOSE, *handle);
1935 ret = delete_chain6(chain, cs.options&OPT_VERBOSE, *handle);
1941 ret = ip6tc_set_policy(chain, policy, cs.options&OPT_COUNTERS ? &cs.fw6.counters : NULL, *handle);