auth-settings.c revision 9575316ab47b32f14c5f8527bbb9673b2827dee0
/* Copyright (c) 2005-2009 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "settings-parser.h"
#include "master-service-settings.h"
#include "auth-settings.h"
#include <stddef.h>
extern struct setting_parser_info auth_setting_parser_info;
extern struct setting_parser_info auth_root_setting_parser_info;
static struct setting_define auth_passdb_setting_defines[] = {
};
};
static struct setting_define auth_userdb_setting_defines[] = {
};
};
static struct setting_define auth_setting_defines[] = {
};
static struct auth_settings auth_default_settings = {
MEMBER(cache_size) 0,
};
struct setting_parser_info auth_setting_parser_info = {
};
static struct setting_define auth_root_setting_defines[] = {
};
static struct auth_root_settings auth_root_default_settings = {
};
struct setting_parser_info auth_root_setting_parser_info = {
};
/* <settings checks> */
const char **error_r)
{
*error_r = "auth section is missing name";
return FALSE;
}
return TRUE;
}
/* </settings checks> */
struct auth_settings *
{
static const struct setting_parser_info *set_roots[] = {
};
const char *error;
void **sets;
struct auth_settings *const *auths;
struct auth_root_settings *set;
unsigned int i, count;
for (i = 0; i < count; i++) {
return auths[i];
}
}
}