xref: /netbsd-src/external/bsd/openldap/sbin/slapd/backends.c (revision d536862b7d93d77932ef5de7eebdc48d76921b77)
1*d536862bSchristos /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
2*d536862bSchristos  *
3*d536862bSchristos  * Copyright 1998-2021 The OpenLDAP Foundation.
4*d536862bSchristos  * All rights reserved.
5*d536862bSchristos  *
6*d536862bSchristos  * Redistribution and use in source and binary forms, with or without
7*d536862bSchristos  * modification, are permitted only as authorized by the OpenLDAP
8*d536862bSchristos  * Public License.
9*d536862bSchristos  *
10*d536862bSchristos  * A copy of this license is available in the file LICENSE in the
11*d536862bSchristos  * top-level directory of the distribution or, alternatively, at
12*d536862bSchristos  * <http://www.OpenLDAP.org/license.html>.
13*d536862bSchristos  */
14*d536862bSchristos /* This file is automatically generated by configure; please do not edit. */
15*d536862bSchristos 
16*d536862bSchristos #include "portable.h"
17*d536862bSchristos #include "slap.h"
18*d536862bSchristos 
19*d536862bSchristos extern BI_init config_back_initialize;
20*d536862bSchristos extern BI_init ldif_back_initialize;
21*d536862bSchristos extern BI_init monitor_back_initialize;
22*d536862bSchristos extern BI_init mdb_back_initialize;
23*d536862bSchristos extern BI_init relay_back_initialize;
24*d536862bSchristos 
25*d536862bSchristos BackendInfo slap_binfo[] = {
26*d536862bSchristos 	{ "config", config_back_initialize },
27*d536862bSchristos 	{ "ldif", ldif_back_initialize },
28*d536862bSchristos 	{ "monitor", monitor_back_initialize },
29*d536862bSchristos 	{ "mdb", mdb_back_initialize },
30*d536862bSchristos 	{ "relay", relay_back_initialize },
31*d536862bSchristos 	{ NULL, NULL },
32*d536862bSchristos };
33*d536862bSchristos 
34*d536862bSchristos /* end of generated file */
35