Home | History | Annotate | Download | only in extensions

Lines Matching refs:option

26 "[!] --tcp-option number        match if TCP option set\n");
29 static const struct option tcp_opts[] = {
36 {.name = "tcp-option", .has_arg = true, .val = '5'},
118 parse_tcp_option(const char *option, uint8_t *result)
122 if (!xtables_strtoui(option, NULL, &ret, 1, UINT8_MAX))
123 xtables_error(PARAMETER_PROBLEM, "Bad TCP option \"%s\"", option);
199 "Only one `--tcp-option' allowed");
201 parse_tcp_option(optarg, &tcpinfo->option);
254 print_option(uint8_t option, int invert, int numeric)
256 if (option || invert)
257 printf(" option=%s%u", invert ? "!" : "", option);
310 print_option(tcp->option,
353 if (tcpinfo->option
357 printf(" --tcp-option %u", tcpinfo->option);