Lines Matching defs:protsep
261 char *protsep;
269 /* protsep points to the start of the host name */
270 protsep = strstr(base, "//");
271 if(!protsep)
272 protsep = base;
274 protsep += 2; /* pass the slashes */
281 pathsep = strchr(protsep, '?');
290 pathsep = strrchr(protsep, '/');
297 pathsep = strchr(protsep, '/');
299 protsep = pathsep + 1;
301 protsep = NULL;
316 if(protsep) {
319 pathsep = strrchr(protsep, '/');
323 *protsep = 0;
335 *protsep = 0;
343 pathsep = strchr(protsep, '/');
348 char *sep = strchr(protsep, '?');
358 pathsep = strchr(protsep, '?');
373 if(('/' == useurl[0]) || (protsep && !*protsep) || ('?' == useurl[0]))