From: Chris R. <chr...@us...> - 2004-01-20 07:09:27
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv21051/lib/Net/LDAP Modified Files: RootDSE.pm Log Message: Added supportedFeatures from Peter Marschall Index: RootDSE.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/RootDSE.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- RootDSE.pm 9 May 2003 12:03:42 -0000 1.1 +++ RootDSE.pm 20 Jan 2004 07:09:21 -0000 1.2 @@ -12,6 +12,7 @@ use strict; +sub supported_feature { _supported_feature( @_, 'supportedFeatures' ) } sub supported_extension { _supported_feature( @_, 'supportedExtension' ) } sub supported_version { _supported_feature( @_, 'supportedLDAPVersion' ) } sub supported_control { _supported_feature( @_, 'supportedControl' ) } @@ -59,6 +60,11 @@ Returns true if the server supports all of the specified extension OIDs +=item supported_feature ( OID_LIST ) + +Returns true if the server supports all of the specified +feature OIDs + =item supported_version ( VERSION_LIST ) Returns true if the server supports all of the specified |