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

Function x_post_config

modules/examples/mod_example_hooks.c:817–825  ·  view source on GitHub ↗

* This routine is called after the server finishes the configuration * process. At this point the module may review and adjust its configuration * settings in relation to one another and report any problems. On restart, * this routine will be called only once, in the running server process. * * The return value is OK, DECLINED, or HTTP_mumble. If we return OK, the * server will still call

Source from the content-addressed store, hash-verified

815 * phase.
816 */
817static int x_post_config(apr_pool_t *pconf, apr_pool_t *plog,
818 apr_pool_t *ptemp, server_rec *s)
819{
820 /*
821 * Log the call and exit.
822 */
823 trace_startup(pconf, s, NULL, "x_post_config()");
824 return OK;
825}
826
827/*
828 * All our process-death routine does is add its trace to the log.

Callers

nothing calls this directly

Calls 1

trace_startupFunction · 0.85

Tested by

no test coverage detected