#ifndef INITCONF_H
#define INITCONF_H
#include "conf.h"
#include "serverconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _init_conf {
CxMempool *mp;
ConfigNode *root;
} InitConfig;
InitConfig *initconfig_load(
const char *file);
int initconfig_validate_directive(ConfigParser2 *parser, ConfigNode *node);
void initconfig_free(InitConfig *conf);
#ifdef __cplusplus
}
#endif
#endif