2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1999-2013 The OpenLDAP Foundation.
5 * Portions Copyright 1999 John C. Quillan.
6 * Portions Copyright 2002 myinternet Limited.
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 #include "perl_back.h"
25 PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
29 PERL_SET_CONTEXT( PERL_INTERPRETER );
30 ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
31 ldap_pvt_thread_mutex_lock( &entry2str_mutex );
37 XPUSHs( perl_back->pb_obj_ref );
38 XPUSHs(sv_2mortal(newSVpv( entry2str( op->ora_e, &len ), 0 )));
42 count = call_method("add", G_SCALAR);
47 croak("Big trouble in back_add\n");
52 PUTBACK; FREETMPS; LEAVE;
55 ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
56 ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
58 send_ldap_result( op, rs );
60 Debug( LDAP_DEBUG_ANY, "Perl ADD\n", 0, 0, 0 );