Net::LDAP::Control - LDAPv3 control object base class
use Net::LDAP::Control;
$ctrl = Net::LDAP::Control->new( type => "1.2.3.4", value => "help", critical => 0 );
$mesg = $ldap->search( @args, control => [ $ctrl ]);
Net::LDAP::Control
is a base-class for LDAPv3 control objects.
Net::LDAP::Control provides the following methods in the base class.
value
method without arguments to allow a sub-class to encode it's value. Sub-classes should not need
to override this method.
Graham Barr <gbarr@pobox.com>
Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@mail.med.cornell.edu>
Copyright (c) 1999-2000 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
$Id: //depot/ldap/lib/Net/LDAP/Control.pm#9 $