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

Function x_open_logs

modules/examples/mod_example_hooks.c:797–805  ·  view source on GitHub ↗

* This routine is called to perform any module-specific log file * openings. It is invoked just before the post_config phase * * The return value is OK, DECLINED, or HTTP_mumble. If we return OK, the * server will still call any remaining modules with an handler for this * phase. */

Source from the content-addressed store, hash-verified

795 * phase.
796 */
797static int x_open_logs(apr_pool_t *pconf, apr_pool_t *plog,
798 apr_pool_t *ptemp, server_rec *s)
799{
800 /*
801 * Log the call and exit.
802 */
803 trace_startup(pconf, s, NULL, "x_open_logs()");
804 return OK;
805}
806
807/*
808 * This routine is called after the server finishes the configuration

Callers

nothing calls this directly

Calls 1

trace_startupFunction · 0.85

Tested by

no test coverage detected