Home | History | Annotate | Download | only in wps

Lines Matching defs:delim

309 	char *delim;
334 delim = os_strchr(domain_and_port, '/');
335 if (delim) {
336 *delim++ = 0; /* null terminate domain and port */
337 path = delim;
343 delim = os_strchr(domain, ':');
344 if (delim) {
345 *delim++ = 0; /* null terminate domain */
346 if (isdigit(*delim))
347 port = atol(delim);