]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/unbind.c
83d5609a42d3b37c65e0e44597a138a1dc34ca54
[openldap] / servers / slapd / back-ldap / unbind.c
1 /* unbind.c - ldap backend unbind function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-1999 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 #include "portable.h"
30
31 #include <stdio.h>
32
33 #include <ac/socket.h>
34 #include <ac/string.h>
35
36 #include "slap.h"
37 #include "back-ldap.h"
38
39 int
40 ldap_back_conn_destroy(
41     Backend             *be,
42     Connection          *conn
43 )
44 {
45         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
46         struct ldapconn *lc, *lp;
47
48         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
49         for (lc = li->lcs, lp = (struct ldapconn *)&li->lcs; lc;
50                 lp=lc, lc=lc->next)
51                 if (lc->conn == conn) {
52                         lp->next = lc->next;
53                         break;
54                 }
55         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
56
57         if (lc) {
58                 ldap_unbind(lc->ld);
59                 free(lc);
60         }
61
62         /* no response to unbind */
63
64         return 0;
65 }