Home | History | Annotate | Download | only in extensions

Lines Matching refs:dash

61 	char *colon, *dash, *error;
84 "Invalid port:port syntax - use dash\n");
86 dash = strchr(colon, '-');
87 if (!dash) {
94 maxport = atoi(dash + 1);
97 "Port `%s' not valid\n", dash+1);
112 dash = strchr(arg, '-');
113 if (colon && dash && dash > colon)
114 dash = NULL;
116 if (dash)
117 *dash = '\0';
124 if (dash) {
125 ip = dotted_to_addr(dash+1);
128 dash+1);