1 /* bind.c - monitor backend bind routine */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-monitor/bind.c,v 1.17.2.3 2008/02/11 23:26:47 kurt Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2001-2008 The OpenLDAP Foundation.
6 * Portions Copyright 2001-2003 Pierangelo Masarati.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
18 * This work was initially developed by Pierangelo Masarati for inclusion
19 * in OpenLDAP Software.
27 #include "back-monitor.h"
30 * At present, only rootdn can bind with simple bind
34 monitor_back_bind( Operation
*op
, SlapReply
*rs
)
36 Debug(LDAP_DEBUG_ARGS
, "==> monitor_back_bind: dn: %s\n",
37 op
->o_req_dn
.bv_val
, 0, 0 );
39 if ( be_isroot_pw( op
) ) {
43 rs
->sr_err
= LDAP_INVALID_CREDENTIALS
;
44 send_ldap_result( op
, rs
);