NAME
Net::LDAP::Reference -- search reference
SYNOPSIS
use Net::LDAP;
$ldap->search( @search_args, callback => \&process);
sub process {
my $mesg = shift;
my $obj = shift;
if (!$obj) {
# Search complete
}
elsif ($obj->isa('Net::LDAP::Reference')) {
my $ref;
foreach $ref ($obj->references) {
# preocess ref
}
}
else {
# Process Net::LDAP::Entry
}
}
DESCRIPTION
METHODS
- references
-
returns a list of references from the server
SEE ALSO
AUTHOR
Graham Barr <gbarr@pobox.com>
COPYRIGHT
Copyright (c) 1997-8 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.