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

/httpd/server/
H A Dutil.c519 /* b) remove trailing . path, segment */
550 /* d) remove trailing xx/.. segment. */
1853 * escape_path_segment() escapes a path segment, as defined in RFC 1808. This
1867 AP_DECLARE(char *) ap_escape_path_segment_buffer(char *copy, const char *segment) argument
1869 const unsigned char *s = (const unsigned char *)segment;
1886 AP_DECLARE(char *) ap_escape_path_segment(apr_pool_t *p, const char *segment) argument
1888 return ap_escape_path_segment_buffer(apr_palloc(p, 3 * strlen(segment) + 1), segment);

Completed in 20 milliseconds