void ap_show_directives(void);
void ap_show_modules(void);
server_rec *ap_read_config(process_rec *process, ap_context_t *temp_pool, const char *config_name);
+void ap_run_pre_config(ap_context_t *p, ap_context_t *plog, ap_context_t *ptemp);
void ap_post_config_hook(ap_context_t *pconf, ap_context_t *plog, ap_context_t *ptemp, server_rec *s);
void ap_child_init_hook(ap_context_t *pchild, server_rec *s);
void ap_register_hooks(module *m);
(*m->create_dir_config)(p, NULL));
}
-void run_pre_config(ap_context_t *p, ap_context_t *plog, ap_context_t *ptemp)
+void ap_run_pre_config(ap_context_t *p, ap_context_t *plog, ap_context_t *ptemp)
{
module *m;
for example, to settle down. */
ap_server_root = def_server_root;
- run_pre_config(pconf, plog, ptemp);
+ ap_run_pre_config(pconf, plog, ptemp);
server_conf = ap_read_config(process, ptemp, confname);
if (configtestonly) {
ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "Syntax OK\n");
}
ap_create_context(&ptemp, pconf);
ap_server_root = def_server_root;
- run_pre_config(pconf, plog, ptemp);
+ ap_run_pre_config(pconf, plog, ptemp);
server_conf = ap_read_config(process, ptemp, confname);
ap_clear_pool(plog);
ap_run_open_logs(pconf, plog, ptemp, server_conf);
static ap_shmem_t *scoreboard_shm = NULL;
-ap_status_t cleanup_shared_mem(void *d)
+static ap_status_t cleanup_shared_mem(void *d)
{
mm_free(scoreboard_shm, ap_scoreboard_image);
ap_scoreboard_image = NULL;
ap_shm_destroy(scoreboard_shm);
}
-void setup_shared_mem(ap_context_t *p)
+static void setup_shared_mem(ap_context_t *p)
{
char buf[512];
const char *fname;