Home | History | Annotate | Download | only in httpd

Lines Matching defs:query

283  * we allocate into file and query, but return pointers into
288 char **query, char **proto)
295 *method = *file = *query = *proto = NULL;
314 *query = strchr(*file, '?');
315 if (*query)
316 *(*query)++ = '\0';
328 if (*query)
329 *query = bozostrdup(httpd, NULL, *query);
332 "url: method: \"%s\" file: \"%s\" query: \"%s\" proto: \"%s\"",
333 *method, *file, *query ? *query : "", *proto ? *proto : ""));
612 char *str, *val, *method, *file, *proto, *query;
746 /* we allocate return space in file and query only */
747 parse_request(httpd, str, &method, &file, &query, &proto);
749 request->hr_query = query;
769 debug((httpd, DEBUG_FAT, "got file \"%s\" query \"%s\"",
1055 * do automatic redirection -- if there are query parameters or userdir for
1067 const char *scheme, *query, *quest;
1135 query = request->hr_query;
1138 query = quest = "";
1142 scheme, hostname, portbuf, url, quest, query);