One Hat Cyber Team
Your IP :
172.69.130.199
Server IP :
188.114.97.3
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
perl5
/
vendor_perl
/
Net
/
LDAP
/
View File Name :
Extension.pm
# Copyright (c) 1998-2004 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::Extension; our @ISA = qw(Net::LDAP::Message); our $VERSION = '1.03'; #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. sub response { my $self = shift; $self->sync unless exists $self->{resultCode}; exists $self->{response} ? $self->{response} : undef; } 1;