]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sock/proto-sock.h
bc6c6f205e72107b7d70dc5df9cb94c1d51324f5
[openldap] / servers / slapd / back-sock / proto-sock.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2007 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
16 #ifndef _PROTO_SOCK_H
17 #define _PROTO_SOCK_H
18
19 LDAP_BEGIN_DECL
20
21 extern BI_init          sock_back_initialize;
22
23 extern BI_open          sock_back_open;
24 extern BI_close         sock_back_close;
25 extern BI_destroy       sock_back_destroy;
26
27 extern BI_db_init       sock_back_db_init;
28 extern BI_db_destroy    sock_back_db_destroy;
29 extern BI_db_config     sock_back_db_config;
30
31 extern BI_op_bind       sock_back_bind;
32 extern BI_op_unbind     sock_back_unbind;
33 extern BI_op_search     sock_back_search;
34 extern BI_op_compare    sock_back_compare;
35 extern BI_op_modify     sock_back_modify;
36 extern BI_op_modrdn     sock_back_modrdn;
37 extern BI_op_add        sock_back_add;
38 extern BI_op_delete     sock_back_delete;
39
40 LDAP_END_DECL
41
42 #endif /* _PROTO_SOCK_H */