\x89\x50\x4E\x47\x0D\x0A\x1A\x0A PNG  \x89\x50\x4E\x47\x0D\x0A\x1A\x0A # Copyright (c) 1998-2004 Graham Barr . 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;