Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::ldap::extra::edirectory(3) [centos man page]

Net::LDAP::Extra::eDirectory(3) 			User Contributed Perl Documentation			   Net::LDAP::Extra::eDirectory(3)

NAME
Net::LDAP::Extra::eDirectory -- extensions for Novell eDirectory SYNOPSIS
use Net::LDAP::Extra qw(eDirectory); $ldap = Net::LDAP->new( ... ); ... if ($ldap->is_eDirectory) my $mesg $ldap->list_replicas($server_dn); print "Replicas on $server_dn * " . join(" * ", $mesg->replicas) . " " if (!$mesg->code); } DESCRIPTION
Net::LDAP::Extra::eDirectory provides functions / LDAP extensions specific to Novell eDirectory. To do so, it provides the following methods: METHODS
is_eDirectory ( ) Tell if the LDAP server queried is Novell eDirectory server. As the check is done by querying the root DSE of the directory, it works without being bound to the directory. In contrast to other Net::LDAP methods this method returns TRUE / FALSE respectively undef on error. list_replicas ( SERVER_DN, OPTIONS ) Query the the replicas on the given server SERVER_DN. On success, the resulting Net::LDAP::Message object supports the method "replicas" that returns the list of replicas on SERVER_DN. get_replica_info ( SERVER_DN, REPLICA_DN, OPTIONS ) Query information of REPLICA_DN on SERVER_DN. On success, the resulting Net::LDAP::Message object supports the method "replica_info" that returns a hash containing information on REPLICA_DN. trigger_backlinker ( OPTIONS ) Trigger the BackLinker process, which resolves external references to ensure they refer to real entries. trigger_janitor ( OPTIONS ) Trigger the Janitor process, which checks connectivity to all servers in database. trigger_limber ( OPTIONS ) Trigger the Limber process, which verifies the server name, internal ipx address and tree connectivity of all replicas. trigger_skulker ( OPTIONS ) Trigger the Skulker process, which checks the synchronization status of every server in the replica ring. trigger_schemasync ( OPTIONS ) Trigger SchemaSync. trigger_partitionpurge ( OPTIONS ) Trigger PartitionPurge. refresh_ldap_server ( OPTIONS ) Trigger refreshing the NLDAP service. AUTHOR
Peter Marschall <peter@adpm.de> COPYRIGHT
Copyright (c) 2013 Peter Marschall. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2013-06-07 Net::LDAP::Extra::eDirectory(3)

Check Out this Related Man Page

Net::LDAP::Extension::Cancel(3) 			User Contributed Perl Documentation			   Net::LDAP::Extension::Cancel(3)

NAME
Net::LDAP::Extension::Cancel - LDAP Cancel Operation SYNOPSIS
use Net::LDAP; use Net::LDAP::Constant qw(LDAP_SUCCESS LDAP_CANCELED) use Net::LDAP::Extension::Cancel; $ldap = Net::LDAP->new( 'ldap.mydomain.eg' ); $ldap->bind('cn=Joe User,cn=People,dc=example,dc=com', password => 'secret'); $search = $ldap->search( base => 'c=US', filter => '(&(sn=Barr) (o=Texas Instruments))', callback => &process_entry, # Call this sub for each entry ); $mesg = $ldap->cancel($search); die "error :", $mesg->code(), ": ", $mesg->error() if ($mesg->code() != LDAP_CANCELED && mesg->code() != LDAP_SUCCESS); DESCRIPTION
"Net::LDAP::Extension::Cancel" implements the "Cancel" extended LDAPv3 operation as described in RFC 3909. The "Cancel" extended operation is very similar to the "Abandon" standard operation, and has the same call signature. Unlike the "Abandon" operation, it has a response which provides an indication of its outcome. It implements no object by itself but extends the Net::LDAP object by another method: METHODS
cancel ( OPERATION, OPTIONS ) Cancel an outstanding operation. "OPERATION" may be a number or an object which is a sub-class of Net::LDAP::Message, returned from a previous method call. OPTIONS is a list of key/value pairs. The following keys are recognized: control => CONTROL control => [ CONTROL, .. ] Control(s) to be passed to the operation. SEE ALSO
Net::LDAP, Net::LDAP::Extension AUTHOR
Peter Marschall <peter@adpm.de>. Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org> COPYRIGHT
Copyright (c) 2011 Peter Marschall. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-07-21 Net::LDAP::Extension::Cancel(3)
Man Page