Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/perl5/vendor_perl/Net/LDAP/ |
Upload File : |
# Copyright (c) 2003-2004 Chris Ridd <chris.ridd@isode.com> and # Graham Barr <gbarr@pobox.com>. All rights reserved. This program is # free software; you can redistribute it and/or modify it under the # same terms as Perl itself. package Net::LDAP::RootDSE; use Net::LDAP::Entry; our @ISA = qw(Net::LDAP::Entry); our $VERSION = '0.02'; 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' ) } sub supported_sasl_mechanism { _supported_feature( @_, 'supportedSASLMechanisms' ) } sub _supported_feature { my $root = shift; my $attr = pop; my %ext; @ext{ $root->get_value( $attr ) } = (); @_ == grep exists $ext{$_}, @_; } 1; __END__ =head1 NAME Net::LDAP::RootDSE - An LDAP RootDSE object =head1 SYNOPSIS my $dse = $ldap->root_dse(); # get naming Contexts my @contexts = $dse->get_value('namingContexts'); # get supported LDAP versions as an array reference my $versions = $dse->get_value('supportedLDAPVersion', asref => 1); =head1 DESCRIPTION =head2 Methods =over 4 =item get_value C<get_value> is identical to L<Net::LDAP::Entry/get_value> =item supported_extension ( OID_LIST ) 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 versions =item supported_control ( OID_LIST ) Returns true if the server supports all of the specified control OIDs =item supported_sasl_mechanism ( SASL_MECH_LIST ) Returns true if the server supports all of the specified SASL mechanism names =back =head1 SEE ALSO L<Net::LDAP>, L<Net::LDAP::Entry> =head1 AUTHOR Chris Ridd E<lt>chris.ridd@isode.comE<gt>, Graham Barr E<lt>gbarr@pobox.comE<gt>. =head1 COPYRIGHT Copyright (c) 2003-2004, Chris Ridd and Graham Barr. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut