Lines Matching refs:url
292 char *meth, *url, *end;
340 url = meth + 3;
342 || (url++, strncmp(meth, "POST ", 5) == 0)) {
347 *(url++) = '\0';
348 while (*url == ' ')
349 url++;
350 if (*url != '/') {
353 meth, url);
357 url++;
360 for (end = url; *end != '\0'; end++)
377 * 'url' was incremented above to point to the first byte *after*
380 if (strlen(meth) == 3 && url[0] == '\0') {
385 len = urldecode(url);
389 meth, url);
394 if ((getbio = BIO_new_mem_buf(url, len)) == NULL
413 while (*url == '/')
414 url++;
415 while (end >= url + 2 && end[-2] == '/' && end[-1] == '/')
477 } else if (ppath != NULL && (*ppath = OPENSSL_strdup(url)) == NULL) {
479 "Out of memory allocating %zu bytes", strlen(url) + 1);