]> git.sur5r.net Git - openldap/blob - servers/slapd/back-asyncmeta/proto-asyncmeta.h
Merge remote-tracking branch 'origin/mdb.RE/0.9'
[openldap] / servers / slapd / back-asyncmeta / proto-asyncmeta.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2016-2017 The OpenLDAP Foundation.
5  * Portions Copyright 2016 Symas Corporation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 /* ACKNOWLEDGEMENTS:
18  * This work was developed by Symas Corporation
19  * based on back-meta module for inclusion in OpenLDAP Software.
20  * This work was sponsored by Ericsson. */
21
22 #ifndef PROTO_ASYNCMETA_H
23 #define PROTO_ASYNCMETA_H
24
25 LDAP_BEGIN_DECL
26
27 extern BI_init                  asyncmeta_back_initialize;
28
29 extern BI_open                  asyncmeta_back_open;
30 extern BI_close                 asyncmeta_back_close;
31 extern BI_destroy               asyncmeta_back_destroy;
32
33 extern BI_db_init               asyncmeta_back_db_init;
34 extern BI_db_open               asyncmeta_back_db_open;
35 extern BI_db_destroy            asyncmeta_back_db_destroy;
36 extern BI_db_close              asyncmeta_back_db_close;
37 extern BI_db_config             asyncmeta_back_db_config;
38
39 extern BI_op_bind               asyncmeta_back_bind;
40 extern BI_op_search             asyncmeta_back_search;
41 extern BI_op_compare            asyncmeta_back_compare;
42 extern BI_op_modify             asyncmeta_back_modify;
43 extern BI_op_modrdn             asyncmeta_back_modrdn;
44 extern BI_op_add                asyncmeta_back_add;
45 extern BI_op_delete             asyncmeta_back_delete;
46 extern BI_op_abandon            asyncmeta_back_abandon;
47
48 extern BI_connection_destroy    asyncmeta_back_conn_destroy;
49
50 int asyncmeta_back_init_cf( BackendInfo *bi );
51
52 LDAP_END_DECL
53
54 #endif /* PROTO_ASYNCMETA_H */