Searched defs:querystring (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/cache/
H A Dcache_storage.c437 char *querystring; local
566 querystring = parsed_uri->query;
589 * Check if the identifier is in the querystring and cut it out.
591 if (querystring) {
594 * querystring and followed by a '='
596 if (!strncmp(querystring, *identifier, len)
597 && (*(querystring + len) == '=')) {
598 param = querystring;
608 param = strstr(querystring, complete);
617 if (querystring !
[all...]

Completed in 22 milliseconds