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