1998-08-09 08:43:13 +08:00
|
|
|
/* unbind.c - decode an ldap unbind operation and pass it to a backend db */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
2003-11-27 09:17:14 +08:00
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
1998-08-09 08:43:13 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
1999-07-02 05:20:45 +08:00
|
|
|
int
|
2003-03-30 17:03:54 +08:00
|
|
|
do_unbind( Operation *op, SlapReply *rs )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "do_unbind\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
|
|
|
* Parse the unbind request. It looks like this:
|
|
|
|
*
|
|
|
|
* UnBindRequest ::= NULL
|
|
|
|
*/
|
|
|
|
|
2004-09-27 07:00:00 +08:00
|
|
|
Statslog( LDAP_DEBUG_STATS, "%s UNBIND\n", op->o_log_prefix,
|
|
|
|
0, 0, 0, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2005-04-12 03:12:30 +08:00
|
|
|
if ( frontendDB->be_unbind ) {
|
|
|
|
op->o_bd = frontendDB;
|
|
|
|
(void)frontendDB->be_unbind( op, rs );
|
|
|
|
op->o_bd = NULL;
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* pass the unbind to all backends */
|
2005-04-12 03:12:30 +08:00
|
|
|
(void)backend_unbind( op, rs );
|
1999-07-02 05:20:45 +08:00
|
|
|
|
|
|
|
return 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2005-04-12 03:12:30 +08:00
|
|
|
|