3 * Copyright 1999, John C. Quillan, All rights reserved.
5 * Redistribution and use in source and binary forms are permitted only
6 * as authorized by the OpenLDAP Public License. A copy of this
7 * license is available at http://www.OpenLDAP.org/license.html or
8 * in file LICENSE in the top-level directory of the distribution.
12 /* init.c - initialize shell backend */
15 /* #include <ac/types.h>
16 #include <ac/socket.h>
23 #include "perl_back.h"
26 /**********************************************************
30 **********************************************************/
46 PerlBackend *perl_back = (PerlBackend *) be->be_private;
50 ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
56 XPUSHs( perl_back->pb_obj_ref );
57 XPUSHs(sv_2mortal(newSVpv( dn , 0)));
58 XPUSHs(sv_2mortal(newSVpv( cred->bv_val , cred->bv_len)));
61 count = perl_call_method("bind", G_SCALAR);
66 croak("Big trouble in back_search\n");
72 PUTBACK; FREETMPS; LEAVE;
75 ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
77 Debug( LDAP_DEBUG_ANY, "Perl BIND\n", 0, 0, 0 );
79 return ( return_code );