Home | History | Annotate | Download | only in wps

Lines Matching defs:delim

337 	char *delim;
361 delim = os_strchr(domain_and_port, '/');
362 if (delim) {
363 *delim++ = 0; /* null terminate domain and port */
364 path = delim;
370 delim = strchr(domain, ':');
371 if (delim) {
372 *delim++ = 0; /* null terminate domain */
373 if (isdigit(*delim))
374 port = atol(delim);