]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/back-ldap.h
fdbe1a2d9c0d4504ffb19f79e738e7719f58bee0
[openldap] / servers / slapd / back-ldap / back-ldap.h
1 /* back-ldap.h - ldap backend header file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.      
36  */
37
38 #ifndef SLAPD_LDAP_H
39 #define SLAPD_LDAP_H
40
41 #include "external.h"
42
43 LDAP_BEGIN_DECL
44
45 struct slap_conn;
46 struct slap_op;
47
48 struct ldapconn {
49         struct slap_conn        *conn;
50         LDAP            *ld;
51         char            *bound_dn;
52         int             bound;
53 };
54
55 struct ldapinfo {
56         char *url;
57 #if 0 /* unused! */
58         char *suffix;
59 #endif /* 0 */
60         char **suffix_massage;
61         char *binddn;
62         char *bindpw;
63         ldap_pvt_thread_mutex_t         conn_mutex;
64         Avlnode *conntree;
65 };
66
67 struct ldapconn *ldap_back_getconn(struct ldapinfo *li, struct slap_conn *conn,
68         struct slap_op *op);
69 int ldap_back_dobind(struct ldapconn *lc, Operation *op);
70 int ldap_back_map_result(int err);
71 int ldap_back_op_result(struct ldapconn *lc, Operation *op);
72 int     back_ldap_LTX_init_module(int argc, char *argv[]);
73
74 char *ldap_back_dn_massage(struct ldapinfo *li, char *dn, int normalized);
75 char *ldap_back_dn_restore(struct ldapinfo *li, char *dn, int normalized);
76
77 int conn_cmp(const void *, const void *);
78 int conn_dup(void *, void *);
79                         
80 LDAP_END_DECL
81
82 #endif