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

/httpd/modules/aaa/
H A Dmod_authn_socache.c269 char *slash = strrchr(r->uri, '/'); local
270 new_context = apr_palloc(r->pool, slash - r->uri +
273 strncat(new_context, r->uri, slash - r->uri);
/httpd/modules/proxy/
H A Dmod_proxy_fcgi.c101 char *slash = ap_strchr(split, '/'); local
102 if (slash) {
103 r->path_info = apr_pstrdup(r->pool, slash);
105 *slash = '\0'; /* truncate path */
112 char *slash = ap_strchr(split, '/'); local
113 if (slash) {
114 r->path_info = apr_pstrdup(r->pool, slash);
116 *slash = '\0'; /* truncate path */
/httpd/modules/cache/
H A Dmod_cache_disk.c676 char *dir, *slash, *q; local
681 slash = strrchr(dir, '/');
682 *slash = '\0';
702 slash = strrchr(q, '/');
703 *slash = '\0';
/httpd/modules/dav/main/
H A Dmod_dav.c156 /* clean up the directory to remove any trailing slash */
776 char *slash; local
786 || (slash = ap_strchr(range, '/')) == NULL) {
791 *dash++ = *slash++ = '\0';
803 if (*slash != '*') {
806 if (apr_strtoff(&dummy, slash, &errp, 10)
/httpd/modules/mappers/
H A Dmod_rewrite.c901 const char *slash; local
914 if ((slash = ap_strchr_c(curpath, '/')) != NULL) {
917 (apr_size_t)(slash - curpath)),
2871 /* make sure it has a trailing slash */
4965 * absolute file-system paths start with a slash.
5094 /* strip trailing slash */
/httpd/server/
H A Dutil.c1904 const char *slash = ap_strchr_c(path, '/'); local
1906 if (colon && (!slash || colon < slash)) {

Completed in 1018 milliseconds