]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/proto-shell.h
Happy New Year
[openldap] / servers / slapd / back-shell / proto-shell.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2018 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25 /* ACKNOWLEDGEMENTS:
26  * This work was originally developed by the University of Michigan
27  * (as part of U-MICH LDAP).
28  */
29
30 #ifndef PROTO_SHELL_H
31 #define PROTO_SHELL_H
32
33 LDAP_BEGIN_DECL
34
35 extern BI_init          shell_back_initialize;
36
37 extern BI_open          shell_back_open;
38 extern BI_close         shell_back_close;
39 extern BI_destroy       shell_back_destroy;
40
41 extern BI_db_init       shell_back_db_init;
42 extern BI_db_destroy    shell_back_db_destroy;
43
44 extern BI_op_bind       shell_back_bind;
45 extern BI_op_unbind     shell_back_unbind;
46 extern BI_op_search     shell_back_search;
47 extern BI_op_compare    shell_back_compare;
48 extern BI_op_modify     shell_back_modify;
49 extern BI_op_modrdn     shell_back_modrdn;
50 extern BI_op_add        shell_back_add;
51 extern BI_op_delete     shell_back_delete;
52
53 extern int shell_back_init_cf( BackendInfo *bi );
54 LDAP_END_DECL
55
56 #endif /* PROTO_SHELL_H */