]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/unbind.c
Add multimaster replication support (ITS#170) based upon
[openldap] / servers / slapd / back-ldap / unbind.c
1 /* unbind.c - ldap backend unbind function */
2
3 /*
4  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
5  * 
6  * Permission is granted to anyone to use this software for any purpose
7  * on any computer system, and to alter it and redistribute it, subject
8  * to the following restrictions:
9  * 
10  * 1. The author is not responsible for the consequences of use of this
11  *    software, no matter how awful, even if they arise from flaws in it.
12  * 
13  * 2. The origin of this software must not be misrepresented, either by
14  *    explicit claim or by omission.  Since few users ever read sources,
15  *    credits should appear in the documentation.
16  * 
17  * 3. Altered versions must be plainly marked as such, and must not be
18  *    misrepresented as being the original software.  Since few users
19  *    ever read sources, credits should appear in the documentation.
20  * 
21  * 4. This notice may not be removed or altered.
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/socket.h>
29 #include <ac/string.h>
30
31 #include "slap.h"
32 #include "back-ldap.h"
33
34 int
35 ldap_back_conn_destroy(
36     Backend             *be,
37     Connection          *conn
38 )
39 {
40         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
41         struct ldapconn *lc, *lp;
42
43         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
44         for (lc = li->lcs, lp = (struct ldapconn *)&li->lcs; lc;
45                 lp=lc, lc=lc->next)
46                 if (lc->conn == conn) {
47                         lp->next = lc->next;
48                         break;
49                 }
50         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
51
52         if (lc) {
53                 if (lc->bound)
54                         ldap_unbind(lc->ld);
55                 free(lc);
56         }
57
58         /* no response to unbind */
59
60         return 0;
61 }