1 /* proto-back-relay.h - relay backend header file */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-relay/proto-back-relay.h,v 1.6.2.4 2008/02/12 01:03:16 quanah Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2004-2008 The OpenLDAP Foundation.
6 * Portions Copyright 2004 Pierangelo Masarati.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
18 * This work was initially developed by Pierangelo Masarati for inclusion
19 * in OpenLDAP Software.
22 #ifndef PROTO_BACK_RELAY
23 #define PROTO_BACK_RELAY
25 #include <ldap_cdefs.h>
29 extern BI_init relay_back_initialize
;
31 extern BI_db_init relay_back_db_init
;
32 extern BI_db_open relay_back_db_open
;
33 extern BI_db_close relay_back_db_close
;
34 extern BI_db_destroy relay_back_db_destroy
;
36 extern BI_op_bind relay_back_op_bind
;
37 extern BI_op_unbind relay_back_op_unbind
;
38 extern BI_op_search relay_back_op_search
;
39 extern BI_op_compare relay_back_op_compare
;
40 extern BI_op_modify relay_back_op_modify
;
41 extern BI_op_modrdn relay_back_op_modrdn
;
42 extern BI_op_add relay_back_op_add
;
43 extern BI_op_delete relay_back_op_delete
;
44 extern BI_op_abandon relay_back_op_abandon
;
45 extern BI_op_cancel relay_back_op_cancel
;
46 extern BI_op_extended relay_back_op_extended
;
47 extern BI_entry_release_rw relay_back_entry_release_rw
;
48 extern BI_entry_get_rw relay_back_entry_get_rw
;
49 extern BI_chk_referrals relay_back_chk_referrals
;
50 extern BI_operational relay_back_operational
;
51 extern BI_has_subordinates relay_back_has_subordinates
;
53 extern BI_connection_init relay_back_connection_init
;
54 extern BI_connection_destroy relay_back_connection_destroy
;
58 #endif /* PROTO_BACK_RELAY */