1Net::LDAPI(3) User Contributed Perl Documentation Net::LDAPI(3)
2
3
4
6 Net::LDAPI - use LDAP over a UNIX domain socket
7
9 use Net::LDAPI;
10
11 $ldapi = Net::LDAPI->new('/var/run/ldapi');
12
13 # alternate way
14 use Net::LDAP;
15
16 $ldapi = Net::LDAP->new('ldapi://');
17
19 Communicate using the LDAP protocol to a directory server using a UNIX
20 domain socket. This mechanism is non-standard, UNIX-specific and not
21 widely supported.
22
23 All the normal "Net::LDAP" methods can be used with a "Net::LDAPI"
24 object; see Net::LDAP for details.
25
27 new ( [SOCKPATH] )
28 Create a new connection. SOCKPATH can optionally be specified, to
29 specify the location of the UNIX domain socket to connect to. See
30 "new" in Net::LDAP for details.
31
33 Net::LDAP, IO::Socket::UNIX
34
36 None yet.
37
39 Derrik Pates <dpates@dsdk12.net>
40
42 Copyright (c) 2003-2004, Derrik Pates and Graham Barr. All rights
43 reserved. This library is free software; you can redistribute it and/or
44 modify it under the same terms as Perl itself.
45
46
47
48perl v5.8.8 2007-02-10 Net::LDAPI(3)