| Server IP : 172.67.220.81 / Your IP : 216.73.217.32 Web Server : Apache System : Linux semi1.us.cloudlogin.co 5.10.244-xeon-hst #1 SMP Sun Sep 14 17:09:20 UTC 2025 x86_64 User : xessglobal ( 271017) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /proc/self/root/usr/local/share/perl5/Net/LDAP/ |
Upload File : |
# Copyright (c) 1998-2004 Graham Barr <[email protected]>. 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::Extension;
our @ISA = qw(Net::LDAP::Message);
our $VERSION = '1.04';
#fetch the response name
sub response_name {
my $self = shift;
$self->sync unless exists $self->{resultCode};
exists $self->{responseName}
? $self->{responseName}
: undef;
}
# fetch the response value
sub response {
my $self = shift;
$self->sync unless exists $self->{resultCode};
exists $self->{responseValue}
? $self->{responseValue}
: undef;
}
1;