Home | History | Annotate | Download | only in extensions

Lines Matching refs:dash

70 	char *arg, *colon, *dash, *error;
96 "Invalid port:port syntax - use dash\n");
98 dash = strchr(colon, '-');
99 if (!dash) {
106 maxport = atoi(dash + 1);
109 "Port `%s' not valid\n", dash+1);
126 dash = strchr(arg, '-');
127 if (colon && dash && dash > colon)
128 dash = NULL;
130 if (dash)
131 *dash = '\0';
138 if (dash) {
139 ip = xtables_numeric_to_ipaddr(dash+1);
142 dash+1);