aboutsummaryrefslogtreecommitdiffstats
path: root/lualdap/doc/us/manual.html
diff options
context:
space:
mode:
authorTomas Guisasola <tomas@luaforge.net>2003-08-27 17:08:51 +0000
committerTomas Guisasola <tomas@luaforge.net>2003-08-27 17:08:51 +0000
commita4e2cdc44989b4b53a70f7e8e6d92a28d8830143 (patch)
tree124701dc401a4b263c206c532838268581414957 /lualdap/doc/us/manual.html
parentCorrecao na declaracao de variavel fora de lugar. (diff)
downloadlualdap-a4e2cdc44989b4b53a70f7e8e6d92a28d8830143.tar.xz
lualdap-a4e2cdc44989b4b53a70f7e8e6d92a28d8830143.zip
Inclusao da opcao no metodo de conexao para utilizacao de TLS.
Diffstat (limited to 'lualdap/doc/us/manual.html')
-rwxr-xr-xlualdap/doc/us/manual.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/lualdap/doc/us/manual.html b/lualdap/doc/us/manual.html
index d101f53..7785967 100755
--- a/lualdap/doc/us/manual.html
+++ b/lualdap/doc/us/manual.html
@@ -1,5 +1,5 @@
<html>
-<!$Id: manual.html,v 1.5 2003-08-25 00:59:19 tomas Exp $>
+<!$Id: manual.html,v 1.6 2003-08-27 17:08:51 tomas Exp $>
<head>
<style type="text/css">
@@ -81,13 +81,18 @@ Specification</a>.
<p>
LDAP provides some way to connect to a server and so did LuaLDAP:
<ul>
-<li> <b><tt>lualdap.open_simple (hostname, who, password)</tt></b> <br>
+<li> <b><tt>lualdap.open_simple (hostname, who, password, usetls)</tt></b> <br>
Initializes a session with an LDAP server.
Quoting the C LDAP API definition <em>"hostname contains a space-separated
list of hostnames or dotted strings representing the IP address of hosts
running an LDAP server to connect to. Each hostname in the list MAY include
a port number which is separated from the host itself with a colon (:)
character."</em>
+The argument <tt>who</tt> should be the <a href="#dn">distinguished name</a>
+of the entry that has the password to be checked against the third argument,
+<tt>password</tt>.
+The optional argument <tt>usetla</tt> is a boolean flag indicating if
+Transport Layer Security (TLS) should be used.
</ul>