summaryrefslogtreecommitdiff
path: root/nslcd/myldap.c
AgeCommit message (Expand)Author
2009-05-01set most SSL/TLS related options globally instead of per connectionArthur de Jong
2009-04-30move debugging initialisation to myldap_set_debuglevel() functionArthur de Jong
2009-04-25produce more logging and get OpenLDAP logging working by logging to stderr (a...Arthur de Jong
2009-04-25clear errno before ldap calls to get usable returned errnoArthur de Jong
2008-12-06rename the tls_checkpeer option to tls_reqcert, deprecating the old name and ...Arthur de Jong
2008-11-29use tls_* options also for StartTLS connectionsArthur de Jong
2008-09-24also retry if ldap_result() failed and getting error number returned LDAP_SUC...Arthur de Jong
2008-09-24log option name instead of option value for ldap_set_option() valueArthur de Jong
2008-07-10LDAP_OPT_X_TLS_REQUIRE_CERT is not a booleanArthur de Jong
2008-06-17replace https:// by ldaps:// (stupid typo)Arthur de Jong
2008-06-14implement SASL authentication based on a patch by Dan White <dwhite@olp.net>Arthur de Jong
2008-06-06also set TLS options if an ldaps:// URL is specifiedArthur de Jong
2008-06-06miscellaneous portability improvementsArthur de Jong
2008-05-16add sanity checks to sleep calls to never sleep too long (problems could occu...Arthur de Jong
2008-05-11close the connection and retry the search (once) if the search fails with the...Arthur de Jong
2008-05-11split retry mechanism of myldap_search() into a new do_retry_search() functionArthur de Jong
2008-05-11allocate the search memory region in myldap_search() instead of in do_try_sea...Arthur de Jong
2008-05-11also allow closing of searches that no longer have a valid connection and int...Arthur de Jong
2008-05-02only support tls-related options if LDAP library supports TLS, only add rebin...Arthur de Jong
2008-05-01support ranged attribute valuesArthur de Jong
2008-04-26also close the LDAP connection on LDAP_SERVER_DOWN (besides LDAP_UNAVAILABLE)Arthur de Jong
2008-04-26ensure that the connection to the LDAP server is closed whenever any of the l...Arthur de Jong
2008-04-25implement new timing mechanism for retries to quickly fail lookups to LDAP se...Arthur de Jong
2008-04-20make warning message more verbose, fix comment and don't try to store empty r...Arthur de Jong
2008-04-18instead of using the dict module to build a cache just store the values in an...Arthur de Jong
2008-04-17change dict_values_first() and dict_values_next() into dict_loop_first() and ...Arthur de Jong
2008-04-05split closing of LDAP session to separate funtion to invalidate running searc...Arthur de Jong
2008-04-04remove code that handles special cases when calling as root (removing rootbin...Arthur de Jong
2008-04-04revert r628 (using ldap_str2dn() instead of ldap_explode_r?dn()) for now to m...Arthur de Jong
2008-03-30only define and use do_sasl_interact() if we have a sasl libraryArthur de Jong
2008-03-28don't warn about problems retreiving the objectClass from en entryArthur de Jong
2008-02-15add StartTLS support by Ralf Haferkamp <rhafer@suse.de>Arthur de Jong
2008-02-15pass URI to do_bind() to make it work with do_rebind() and use that URI (than...Arthur de Jong
2008-02-10replace the calls to ldap_explode_dn() and ldap_explode_rdn() with a call to ...Arthur de Jong
2008-02-04make some changes to allow it to compile on more platformsArthur de Jong
2008-02-02implement myldap_cpy_rdn_value() function to copy rdn value into a buffer (fu...Arthur de Jong
2008-02-02log and otherwise ignore errors in ldap_parse_page_control()Arthur de Jong
2008-02-02fix copy-pastoArthur de Jong
2008-02-02don't request paging when doing a search with scope base and ignore errors of...Arthur de Jong
2008-02-02reset LDAP error flag if ldap_get_values() returned an error because some LDA...Arthur de Jong
2008-02-01have proper checks and logs of all ldap operationsArthur de Jong
2008-01-31defined LDAP_DEPRECATED to also have definitions for deprecated functionsArthur de Jong
2008-01-31move pagectrl code into compat directoryArthur de Jong
2008-01-27integrate some compatibility code into myldap.c, the only place it's usedArthur de Jong
2008-01-27work around some LDAP libraries not having all optionsArthur de Jong
2007-12-26only log "connected to LDAP server" if it is a new connectionArthur de Jong
2007-12-26properly flag running searches as invalid if the connection to the LDAP serve...Arthur de Jong
2007-12-25have myldap_get_entry() return an LDAP status code that can signal errors in ...Arthur de Jong
2007-12-24merge the do_map_error(), do_with_reconnect() into the myldap_search() and do...Arthur de Jong
2007-12-22remove bind_policy option because the same effect is achieved by setting reco...Arthur de Jong