MCPcopy Create free account
hub / github.com/apache/httpd / core_map_to_storage

Function core_map_to_storage

server/core.c:4820–4833  ·  view source on GitHub ↗

* * Test the filesystem name through directory_walk and file_walk */

Source from the content-addressed store, hash-verified

4818 * Test the filesystem name through directory_walk and file_walk
4819 */
4820static int core_map_to_storage(request_rec *r)
4821{
4822 int access_status;
4823
4824 if ((access_status = ap_directory_walk(r))) {
4825 return access_status;
4826 }
4827
4828 if ((access_status = ap_file_walk(r))) {
4829 return access_status;
4830 }
4831
4832 return OK;
4833}
4834
4835
4836static int do_nothing(request_rec *r) { return OK; }

Callers

nothing calls this directly

Calls 2

ap_directory_walkFunction · 0.85
ap_file_walkFunction · 0.85

Tested by

no test coverage detected