Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 4.8

i386

Net::LDAPI(3pm)


Net::LDAPI

Net::LDAPI

NAME
SYNOPSIS
DESCRIPTION
CONSTRUCTOR
SEE ALSO
BUGS
AUTHOR
COPYRIGHT

NAME

Net::LDAPI − use LDAP over a UNIX domain socket

SYNOPSIS

 use Net::LDAPI;
 $ldapi = Net::LDAPI->new(’/var/lib/ldapi’);
 # alternate way
 use Net::LDAP;
 $ldapi = Net::LDAP->new(’ldapi://’);

DESCRIPTION

Communicate using the LDAP protocol to a directory server using a UNIX domain socket. This mechanism is non−standard, UNIX-specific and not widely supported.

All the normal "Net::LDAP" methods can be used with a "Net::LDAPI" object; see Net::LDAP for details.

CONSTRUCTOR

new ( [ SOCKPATH ] )

Create a new connection. SOCKPATH can optionally be specified, to specify the location of the UNIX domain socket to connect to. See "new" in Net::LDAP for details.

SEE ALSO

Net::LDAP, IO::Socket::UNIX

BUGS

None yet.

AUTHOR

Derrik Pates <dpates@dsdk12.net>

COPYRIGHT

Original code Copyright (c) 2003, Derrik Pates and Graham Barr. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.



Net::LDAPI(3pm)