* upstream's c_io_mutex.
*/
static int
-request_bind( Operation *op )
+client_bind( Operation *op )
{
Connection *client = op->o_client, *upstream = op->o_upstream;
BerElement *ber, *copy = NULL;
* upstream's c_io_mutex.
*/
static int
-request_bind_as_vc( Operation *op )
+client_bind_as_vc( Operation *op )
{
Connection *client = op->o_client, *upstream = op->o_upstream;
BerElement *ber, *request, *copy = NULL;
}
int
-client_bind( Connection *client, Operation *op )
+request_bind( Connection *client, Operation *op )
{
Connection *upstream;
int rc = LDAP_SUCCESS;
#ifdef LDAP_API_FEATURE_VERIFY_CREDENTIALS
if ( lload_features & LLOAD_FEATURE_VC ) {
- rc = request_bind_as_vc( op );
+ rc = client_bind_as_vc( op );
} else
#endif /* LDAP_API_FEATURE_VERIFY_CREDENTIALS */
{
- rc = request_bind( op );
+ rc = client_bind( op );
}
CONNECTION_LOCK_DECREF(upstream);
* bind.c
*/
LDAP_SLAPD_F (void) client_reset( Connection *c );
-LDAP_SLAPD_F (int) client_bind( Connection *c, Operation *op );
+LDAP_SLAPD_F (int) request_bind( Connection *c, Operation *op );
/*
* client.c