1Net::LDAP::Control::NoOUps(e3r)Contributed Perl DocumentNaetti:o:nLDAP::Control::NoOp(3)
2
3
4
6 Net::LDAP::Control::NoOp - LDAPv3 Tree Delete control object
7
9 use Net::LDAP;
10 use Net::LDAP::Control::NoOp;
11
12 $ldap = Net::LDAP->new( "ldap.mydomain.eg" );
13
14 $noop = Net::LDAP::Control::NoOp->new();
15
16 $msg = $ldap->modify( 'cn=Barbara Jensen, o=University of Michigan, c=US',
17 control => [ $noop ] );
18
19 die "error: ",$msg->code(),": ",$msg->error() if ($msg->code());
20
22 "Net::LDAP::Control::NoOp" provides an interface for the creation and
23 manipulation of objects that represent the "No-Op" control as described
24 by draft-zeilenga-ldap-noop-01.txt <https://tools.ietf.org/html/draft-
25 zeilenga-ldap-noop-01>.
26
27 The control, which has no corresponding response control, is
28 appropriate for all LDAP update requests, including add, delete,
29 modify, and moddn.
30
31 Its criticality is always "TRUE"; it has no value.
32
33 The presence of the "No-Op" control in an operation request message
34 disables the normal effect of the operation; i.e. the server will do
35 all processing necessary to perform the operation but not actually
36 update the directory.
37
39 Since the "NoOp" control does not have any values, only the constructor
40 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::NoOp"
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) 2021 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.32.1 2021-02-16 Net::LDAP::Control::NoOp(3)