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.
14 /* #include <ac/types.h>
15 #include <ac/socket.h>
22 #include "perl_back.h"
36 PerlBackend *perl_back = (PerlBackend *) be->be_private;
38 ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
39 ldap_pvt_thread_mutex_lock( &entry2str_mutex );
45 XPUSHs( perl_back->pb_obj_ref );
46 XPUSHs(sv_2mortal(newSVpv( entry2str( e, &len ), 0 )));
50 count = perl_call_method("add", G_SCALAR);
55 croak("Big trouble in back_search\n");
60 PUTBACK; FREETMPS; LEAVE;
63 ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
64 ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
66 if( return_code != 0 ) {
67 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
68 NULL, NULL, NULL, NULL );
71 send_ldap_result( conn, op, LDAP_SUCCESS,
72 NULL, NULL, NULL, NULL );
75 Debug( LDAP_DEBUG_ANY, "Here ADD\n", 0, 0, 0 );