summaryrefslogtreecommitdiff
path: root/include/apr_ldap.h.in
Commit message (Collapse)AuthorAgeFilesLines
* Sync .h.in to .hw fileswrowe2008-05-291-2/+11
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@661390 13f79535-47bb-0310-9956-ffa450edef68
* Introduce an internal apu_dso API for loading modular components into thewrowe2008-05-221-0/+20
| | | | | | | | | | | | | core library, even across multiple consumers. Rearranges apr_dbd into this schema to ensure consumers do not corrupt one another, and to respect the platform specific shared lib search path - especially for pre-installation `make check`. Abstracts ldap into the apu_dso schema, with a note in CHANGES for changes required by apps which consume the ldap library directly. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@659293 13f79535-47bb-0310-9956-ffa450edef68
* Add new APU_DECLARE_LDAP macro to wrap the private build of thesewrowe2008-05-211-0/+1
| | | | | | | | | functions once ldap is added to the modular DSO schema. Also fixes the missing apr_ldap_rebind.h to apr_ldap.h. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@658648 13f79535-47bb-0310-9956-ffa450edef68
* Wrapper for LDAP_SERVER_DOWN. where LDAP_UNAVAILABLE might occur instead.wrowe2008-05-021-0/+2
| | | | | | | | | PR: 43875 Submitted by: Eric Covener <covener gmail.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@652876 13f79535-47bb-0310-9956-ffa450edef68
* Add an LDAP rebind implementation so that authentication can beminfrin2007-12-071-0/+1
| | | | | | | carried through referrals. [Paul J. Reder] git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@601938 13f79535-47bb-0310-9956-ffa450edef68
* Un-UTF8 this filewrowe2007-10-181-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@586048 13f79535-47bb-0310-9956-ffa450edef68
* Support Tivoli ITDS LDAP client library, without SSL supporttrawick2007-07-311-0/+5
| | | | | | | | | | | | | | for now. Submitted by: Paul Reder I tweaked this to * remove comment about how SSL support might be added later * move some variable declarations in ldap/apr_ldap_option.c that weren't needed when SSL wasn't supported git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@561430 13f79535-47bb-0310-9956-ffa450edef68
* Add the #define APR_LDAP_SIZELIMIT that is set appropriately forbnicholes2007-03-131-0/+24
| | | | | | | | | | | the LDAP SDK that is being used. Also include ZOS as an LDAP Platform. Submitted by: David Jones <oscaremma gmail com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@517793 13f79535-47bb-0310-9956-ffa450edef68
* Update license headers.jerenkrantz2007-01-151-6/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@496440 13f79535-47bb-0310-9956-ffa450edef68
* * include/apr_ldap.h.in: For OpenLDAP, before including <ldap.h>,jorton2006-04-061-0/+6
| | | | | | | | | | | define LDAP_DEPRECATED to 1 if it is not already defined. Fixes use of OpenLDAP 2.3, which by default hides the ldap_init() etc prototypes, which can have rather catastrophic effects at runtime. (since the compiler presumes ldap_init() returns int and discards the top half of the LDAP * pointer value on 64-bit platforms) git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@391985 13f79535-47bb-0310-9956-ffa450edef68
* Update remaining 2004 copyright notices.jorton2005-06-141-1/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@190595 13f79535-47bb-0310-9956-ffa450edef68
* The Mozilla SDK has a different vendor string to the Netscape and Solarisminfrin2005-01-211-0/+2
| | | | | | | | SDK, but works the same way. Install proper detection of the ldapssl_install_routines function, which is present on some Solaris toolkits but not others. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@125933 13f79535-47bb-0310-9956-ffa450edef68
* Solaris v2.9's LDAP is a repackaged Netscape/Mozilla SDK. Detect and handleminfrin2005-01-211-1/+0
| | | | | | | it correctly. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@125928 13f79535-47bb-0310-9956-ffa450edef68
* Add C++ extern wrappers to the LDAP functionsminfrin2005-01-201-0/+7
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@125742 13f79535-47bb-0310-9956-ffa450edef68
* Add the ability to detect the flavour of the LDAP toolkit within configure,minfrin2005-01-061-29/+8
| | | | | | | making the APR_LDAP_*_LDAPSDK macros work correctly. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@124433 13f79535-47bb-0310-9956-ffa450edef68
* Teach apr_ldap_init() how to handle STARTTLS in addition to the existingminfrin2005-01-051-3/+1
| | | | | | | SSL support. Add apr_ldap_option API. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@124191 13f79535-47bb-0310-9956-ffa450edef68
* Rework the LDAP toolkit detection to be more accurate than "OpenLDAPminfrin2004-12-201-59/+52
| | | | | | | detected regardless", while remaining backwards compatible with v1.0. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@122862 13f79535-47bb-0310-9956-ffa450edef68
* Overhaul support for LDAP URL parsing. Instead of using incompatibleminfrin2004-08-031-3/+3
| | | | | | | | | | | | URL parsers and memory that needs freeing, apr-util provides a parser which parses the URL and allocates memory from a pool. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59110 13f79535-47bb-0310-9956-ffa450edef68
* Remove support for LDAP v2.0 SDK toolkits. This will be addedminfrin2004-08-031-18/+8
| | | | | | | | | | | | | | back properly later assuming there is demand for it. In the mean time, please use an LDAP v3.0 SDK toolkit. This has the side effect of removing the macro fooness in apr_ldap. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59108 13f79535-47bb-0310-9956-ffa450edef68
* Fix a mere spelling mistakeminfrin2004-08-011-1/+1
| | | | | | | | | | PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59103 13f79535-47bb-0310-9956-ffa450edef68
* Add an apr_ldap_err_t structure to handle the return of LDAPminfrin2004-08-011-0/+11
| | | | | | | | | | | specific error codes. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59102 13f79535-47bb-0310-9956-ffa450edef68
* Add APR functions to do the job of ldap_init(), hiding toolkitminfrin2004-07-301-0/+1
| | | | | | | | | | | specific SSL/TLS handling. Code derived from httpd util_ldap. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59099 13f79535-47bb-0310-9956-ffa450edef68
* Change the order in which ldap.h and lber.h are defined, to fixminfrin2004-05-221-3/+3
| | | | | | | | | | | a compile bug in Solaris v2.8 which requires lber.h then ldap.h. PR: 27379 Obtained from: Submitted by: Andrew Connors <andy.connors@idea.com> Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59033 13f79535-47bb-0310-9956-ffa450edef68
* Relicense some more files.jorton2004-02-261-49/+10
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58995 13f79535-47bb-0310-9956-ffa450edef68
* Axe deprecated functions, #defines, etc. in apr-util.jerenkrantz2003-11-161-9/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58953 13f79535-47bb-0310-9956-ffa450edef68
* Fix apr-util build on Unix with OpenLDAP until someone who caresjorton2003-03-101-0/+11
| | | | | | | about proprietary LDAP toolkits brings apu-conf.m4 up to speed. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58868 13f79535-47bb-0310-9956-ffa450edef68
* Added support for Novell LDAP SDK and standardized the SSL support acrossbnicholes2003-02-141-28/+59
| | | | | | | | | | the various LDAP SDKs. Isolated the SSL functionality to mod_ldap rather than speading it across mod_auth_ldap and mod_ldap. Submitted by: Dave Ward, Brad Nicholes (bnicholes@apache.org) git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58853 13f79535-47bb-0310-9956-ffa450edef68
* Update copyright notifications to 2003.thommay2003-01-011-1/+1
| | | | | | | No Functional changes. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58816 13f79535-47bb-0310-9956-ffa450edef68
* Since there has been only a single comment and no objections, beginwrowe2002-12-111-4/+32
| | | | | | | | | | | | | | | using the native Win32 LDAP library so that we can support mod_auth_ldap out of the box, without rolling in a whole bunch of 3rd party libraries. This isn't a -1 on build configurations using openldap or any other ldap provider; it's simply a matter of the practical aspects of providing binary builds on Win32 for a soon-to-be-supported mod_auth_ldap. Even when ldap isn't present, it would be worthwhile to be able to parse ldap URIs, just as we parse other URI formats in apr-util. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58799 13f79535-47bb-0310-9956-ffa450edef68
* Update our copyright for this year.fielding2002-03-131-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58571 13f79535-47bb-0310-9956-ffa450edef68
* Fix typojwoolley2001-09-161-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58422 13f79535-47bb-0310-9956-ffa450edef68
* Doxygen Changesianh2001-09-161-2/+12
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58421 13f79535-47bb-0310-9956-ffa450edef68
* First part of the LDAP-to-apr-util patch: The include file.minfrin2001-08-181-0/+112
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58379 13f79535-47bb-0310-9956-ffa450edef68