Lines Matching defs:query
231 char *http_version, *query;
338 * Decode request path and query
378 query = strchr(desc->http_path, '?');
379 if (query != NULL) {
380 *query++ = '\0';
382 if ((desc->http_query = strdup(query)) == NULL)
1105 char ibuf[128], *str, *path, *query;
1149 if ((query = url_encode(desc->http_query)) == NULL)
1151 ret = expand_string(buf, len, "$QUERY_STRING_ENC", query);
1152 free(query);
1273 char *hostval, *query;
1405 * Reset and update the query. The updated query must already
1411 if ((query = strchr(path, '?')) != NULL) {
1412 *query++ = '\0';
1413 if ((desc->http_query_alias = strdup(query)) == NULL)
1424 path, query ? query : "");