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

Function x_pre_translate_name

modules/examples/mod_example_hooks.c:1182–1190  ·  view source on GitHub ↗

* This routine gives our module an opportunity to translate the URI into an * actual filename, before URL decoding happens. * * This is a RUN_FIRST hook. */

Source from the content-addressed store, hash-verified

1180 * This is a RUN_FIRST hook.
1181 */
1182static int x_pre_translate_name(request_rec *r)
1183{
1184 /*
1185 * We don't actually *do* anything here, except note the fact that we were
1186 * called.
1187 */
1188 trace_request(r, "x_pre_translate_name()");
1189 return DECLINED;
1190}
1191
1192/*
1193 * This routine gives our module an opportunity to translate the URI into an

Callers

nothing calls this directly

Calls 1

trace_requestFunction · 0.85

Tested by

no test coverage detected