From: Chris R. <chr...@us...> - 2003-03-09 10:57:22
|
Update of /cvsroot/perl-ldap/ldap/lib/Net In directory sc8-pr-cvs1:/tmp/cvs-serv31933 Modified Files: LDAP.pod Log Message: Document the LDAPv3 special attribute 1.1 Index: LDAP.pod =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP.pod,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- LDAP.pod 27 Jan 2003 14:19:39 -0000 1.18 +++ LDAP.pod 9 Mar 2003 10:57:19 -0000 1.19 @@ -636,9 +636,14 @@ $ldap->search( ... , attrs => ['createtimestamp'] , ... ); -To retreive the default attributes and additional ones, use '*'. +To retrieve the default attributes and additional ones, use '*'. $ldap->search( ... , attrs => ['*', 'createtimestamp'] , ... ); + +To retrieve no attributes (the server only returns the DNs of matching +entries), use '1.1': + + $ldap->search( ... , attrs => ['1.1'] , ... ); =item control |