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

/httpd/server/
H A Dutil_script.c299 AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info) argument
302 int lp = strlen(path_info);
304 while (lu-- && lp-- && uri[lu] == path_info[lp]) {
305 if (path_info[lp] == '/') {
360 * args and path_info of the original request, and not any that may have
366 if (r->path_info && *r->path_info) {
367 apr_table_setn(e, "PATH_INFO", r->path_info);
370 else if (!r->path_info || !*r->path_info) {
[all...]
/httpd/include/
H A Dhttpd.h702 /** Accept the path_info from the request */
704 /** Return a 404 error if path_info was given */
706 /** Module may chose to use the given path_info */
968 char *path_info; member in struct:request_rec
973 * Flag for the handler to accept or reject path_info on

Completed in 17 milliseconds