Update of /cvsroot/perl-ldap/ldap/lib/Net
In directory sc8-pr-cvs1:/tmp/cvs-serv18740
Modified Files:
LDAP.pod
Log Message:
Revamp to improve style and consistency (maybe)
Index: LDAP.pod
===================================================================
RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP.pod,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- LDAP.pod 23 May 2003 07:07:31 -0000 1.32
+++ LDAP.pod 23 Jun 2003 12:52:24 -0000 1.33
@@ -6,48 +6,49 @@
use Net::LDAP;
- $ldap = Net::LDAP->new('ldap.bigfoot.com') or die "$@";
+ $ldap = Net::LDAP->new( 'ldap.bigfoot.com' ) or die "$@";
- $ldap->bind ; # an anonymous bind
+ $mesg = $ldap->bind ; # an anonymous bind
- $mesg = $ldap->search ( # perform a search
+ $mesg = $ldap->search( # perform a search
[...1135 lines suppressed...]
=over 4
-=item type
+=item type =E<gt> OID
This element must be present and is the name of the type of control
being requested.
-=item critical
+=item critical =E<gt> FLAG
critical is optional and should be a boolean value, if it is not specified
then it is assumed to be I<false>.
-=item value
+=item value =E<gt> VALUE
If the control being requested requires a value then this element should
hold the value for the server.
|