]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/unbind.c
Move serverID into a Global configuration section.
[openldap] / libraries / libldap / unbind.c
index 564432ea78f466efbce0628d3227b67ecdeb4379..42277bb6f11eb377ff20b43c5a9e86837af0838a 100644 (file)
@@ -1,7 +1,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2006 The OpenLDAP Foundation.
+ * Copyright 1998-2008 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
  * All rights reserved.
  */
-/* Portions Copyright (C) The Internet Society (1997)
- * ASN.1 fragments are from RFC 2251; see RFC for full legal notices.
- */
-
-/* An Unbind Request looks like this:
- *
- *     UnbindRequest ::= NULL
- *
- * and has no response.
- */
 
 #include "portable.h"
 
 
 #include "ldap-int.h"
 
+/* An Unbind Request looks like this:
+ *
+ *     UnbindRequest ::= [APPLICATION 2] NULL
+ *
+ * and has no response.  (Source: RFC 4511)
+ */
+
 int
 ldap_unbind_ext(
        LDAP *ld,
@@ -106,7 +103,7 @@ ldap_ld_free(
                next = lm->lm_next;
                ldap_msgfree( lm );
        }
-
+    
        if ( ld->ld_abandoned != NULL ) {
                LDAP_FREE( ld->ld_abandoned );
                ld->ld_abandoned = NULL;
@@ -147,16 +144,6 @@ ldap_ld_free(
        }
 #endif
 
-       if ( ld->ld_options.ldo_tm_api != NULL ) {
-               LDAP_FREE( ld->ld_options.ldo_tm_api );
-               ld->ld_options.ldo_tm_api = NULL;
-       }
-
-       if ( ld->ld_options.ldo_tm_net != NULL ) {
-               LDAP_FREE( ld->ld_options.ldo_tm_net );
-               ld->ld_options.ldo_tm_net = NULL;
-       }
-
 #ifdef HAVE_CYRUS_SASL
        if ( ld->ld_options.ldo_def_sasl_mech != NULL ) {
                LDAP_FREE( ld->ld_options.ldo_def_sasl_mech );
@@ -179,6 +166,10 @@ ldap_ld_free(
        }
 #endif
 
+#ifdef HAVE_TLS
+       ldap_int_tls_destroy( &ld->ld_options );
+#endif
+
        if ( ld->ld_options.ldo_sctrls != NULL ) {
                ldap_controls_free( ld->ld_options.ldo_sctrls );
                ld->ld_options.ldo_sctrls = NULL;
@@ -257,9 +248,8 @@ ldap_send_unbind(
 
        ld->ld_errno = LDAP_SUCCESS;
        /* send the message */
-       if ( ber_flush( sb, ber, 1 ) == -1 ) {
+       if ( ber_flush2( sb, ber, LBER_FLUSH_FREE_ALWAYS ) == -1 ) {
                ld->ld_errno = LDAP_SERVER_DOWN;
-               ber_free( ber, 1 );
        }
 
        return( ld->ld_errno );