1Net::LDAP::Control::ManUasgeerDsCaoInTt(r3i)buted Perl DNoectu:m:eLnDtAaPt:i:oCnontrol::ManageDsaIT(3)
2
3
4
6 Net::LDAP::Control::ManageDsaIT - LDAPv3 Manage DSA-IT control object
7
9 use Net::LDAP;
10 use Net::LDAP::Control::ManageDsaIT;
11
12 $ldap = Net::LDAP->new( "ldap.mydomain.eg" );
13
14 $manage = Net::LDAP::Control::ManageDsaIT->new( critical => 1 );
15
16 $msg = $ldap->modify( 'dc=sub,dc=mydomain,dc=eg",
17 changes => [
18 delete => { ref => 'ldap://ldap2/dc=sub,dc=mydom,dc=eg' },
19 add => { ref => 'ldap://ldap3/dc=sub,dc=mydom,dc=eg' } ],
20 control => [ $manage ] );
21
22 die "error: ",$msg->code(),": ",$msg->error() if ($msg->code());
23
25 "Net::LDAP::Control::ManageDsaIT" provides an interface for the
26 creation and manipulation of objects that represent the "ManageDsaIT"
27 control as described by RFC 3296.
28
29 It allows the manipulation of referral and other special objects as
30 normal entries.
31
32 The control is appropriate for LDAP search, compare and all update
33 requests, including add, delete, modify, and modifyDN (rename)
34 [RFC4511].
35
36 Its criticality may be TRUE or FALSE; it has no value.
37
39 Since the "ManageDsaIT" control does not have any values, only the
40 constructor arguments described in Net::LDAP::Control are supported
41
43 As there are no additional values in the control, only the methods in
44 Net::LDAP::Control are available for "Net::LDAP::Control::ManageDsaIT"
45 objects.
46
48 Net::LDAP, Net::LDAP::Control,
49
51 Peter Marschall <peter@adpm.de>.
52
53 Please report any bugs, or post any suggestions, to the perl-ldap
54 mailing list <perl-ldap@perl.org>
55
57 Copyright (c) 2004 Peter Marschall. All rights reserved. This program
58 is free software; you can redistribute it and/or modify it under the
59 same terms as Perl itself.
60
61
62
63perl v5.36.0 2022-07-22Net::LDAP::Control::ManageDsaIT(3)