Home | History | Annotate | Download | only in httpd

Lines Matching defs:url

203 append_index_html(bozohttpd_t *httpd, char **url)
205 *url = bozorealloc(httpd, *url,
206 strlen(*url) + strlen(httpd->index_html) + 1);
207 strcat(*url, httpd->index_html);
209 "append_index_html: url adjusted to `%s'", *url));
378 char *query, *s, *t, *path, *env, *command, *file, *url;
411 bozoasprintf(httpd, &url, "%s%s%s",
415 debug((httpd, DEBUG_NORMAL, "%s: url `%s'", __func__, url));
423 len = strlen(url);
425 if (bozo_auth_check(request, url + 1))
429 strncmp(url + 1, CGIBIN_PREFIX, CGIBIN_PREFIX_LEN) != 0) {
440 } else if (len - 1 == CGIBIN_PREFIX_LEN) /* url is "/cgi-bin/" */
629 free(url);
677 free(url);