Home | History | Annotate | Download | only in extensions

Lines Matching refs:dash

73 	char *arg, *colon, *dash, *error;
99 "Invalid port:port syntax - use dash\n");
101 dash = strchr(colon, '-');
102 if (!dash) {
109 maxport = atoi(dash + 1);
112 "Port `%s' not valid\n", dash+1);
129 dash = strchr(arg, '-');
130 if (colon && dash && dash > colon)
131 dash = NULL;
133 if (dash)
134 *dash = '\0';
141 if (dash) {
142 ip = xtables_numeric_to_ipaddr(dash+1);
145 dash+1);