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