(index ("ldap-initialize" 0) ("ldap-bind" 205) ("ldap-unbind" 448))
(def (sig (procedure "(ldap-initialize uris #!optional (version 3))" (id ldap-initialize))) (p "Initializes the LDAP library and opens a connection to an LDAP server. Returns an ldap-connection record."))
(def (sig (procedure "(ldap-bind conn dn pass)" (id ldap-bind))) (p "Attempts to bind to a dn using the given password. The conn argument is a connection record returned from ldap-initialize. Returns #t if the bind succeeded, #f otherwise."))
(def (sig (procedure "(ldap-unbind conn)" (id ldap-unbind))) (p "Terminate the current association, and free the resources contained in the connecction record. After calling ldap-unbind the connection to the LDAP server is closed and the connection record becomes invalid."))
