* 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
| 815 | * phase. |
| 816 | */ |
| 817 | static 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. |
nothing calls this directly
no test coverage detected