Net::LDAP::Reference (3)
Leading comments
Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) Standard preamble: ========================================================================
NAME
Net::LDAP::Reference - search referenceSYNOPSIS
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) { # process ref } } else { # Process Net::LDAP::Entry } }
DESCRIPTION
The Net::LDAP::Reference object represents a reference (sometimes called a ``referral'') returned by the directory from a search.METHODS
- references
- Returns a list of references from the server.
SEE ALSO
Net::LDAP, Net::LDAP::SearchAUTHOR
Graham Barr <gbarr@pobox.com>.Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>.