1 /* $OpenLDAP: pkg/ldap/servers/slapd/back-perl/modrdn.c,v 1.22.2.3 2008/02/11 23:26:47 kurt Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1999-2008 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
;
28 #if defined(HAVE_WIN32_ASPERL) || defined(USE_ITHREADS)
29 PERL_SET_CONTEXT( PERL_INTERPRETER
);
32 ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex
);
38 XPUSHs( perl_back
->pb_obj_ref
);
39 XPUSHs(sv_2mortal(newSVpv( op
->o_req_dn
.bv_val
, 0 )));
40 XPUSHs(sv_2mortal(newSVpv( op
->orr_newrdn
.bv_val
, 0 )));
41 XPUSHs(sv_2mortal(newSViv( op
->orr_deleteoldrdn
)));
42 if ( op
->orr_newSup
!= NULL
) {
43 XPUSHs(sv_2mortal(newSVpv( op
->orr_newSup
->bv_val
, 0 )));
48 count
= call_method("modrdn", G_SCALAR
);
50 count
= perl_call_method("modrdn", G_SCALAR
);
56 croak("Big trouble in back_modrdn\n") ;
61 PUTBACK
; FREETMPS
; LEAVE
;
64 ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex
);
66 send_ldap_result( op
, rs
);
68 Debug( LDAP_DEBUG_ANY
, "Perl MODRDN\n", 0, 0, 0 );