summaryrefslogtreecommitdiff
path: root/ldap/apr_ldap_url.c
Commit message (Collapse)AuthorAgeFilesLines
* We were missing some glue.wrowe2005-06-231-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@193104 13f79535-47bb-0310-9956-ffa450edef68
* Update copyright year to 2005 and standardize on current copyright owner line.jerenkrantz2005-02-041-1/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@151413 13f79535-47bb-0310-9956-ffa450edef68
* Quit using unique #include conventions. Also solve misc Win32 (possiblywrowe2005-01-051-4/+3
| | | | | | | | netware) build issues, as some platforms need apr.h/apu.h before anything else is included. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@124258 13f79535-47bb-0310-9956-ffa450edef68
* Fix a parsing problem with the LDAP URL where it was truncating the host ↵bnicholes2004-10-251-4/+3
| | | | | | portion after it found the first :port. Since an LDAP URL is allowed to contain multiple hosts:port, if the first host included a :port, the other hosts were ignored. This functionality also attempted to parse-out of the URL the first :port that it found. If one host in a multi-host URL specified the default port (ie no port specified) and the second host specified an alternate port, the result of the parse assumed that both hosts were reachable on the alternate port. Therefore the parsed host string must retain all :port specifiers. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59148 13f79535-47bb-0310-9956-ffa450edef68
* Fix compiler warnings:jorton2004-08-261-0/+3
| | | | | | | | | | | * include/apr_ldap_init.h (apr_ldap_ssl_deinit): Fix prototype. * ldap/apr_ldap_init.c (apr_ldap_ssl_deinit): Likewise. * ldap/apr_ldap_url.c: Include stdlib.h. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59125 13f79535-47bb-0310-9956-ffa450edef68
* Win32 LDAP SDK fixesbnicholes2004-08-091-0/+1
| | | | | | | Submitted by: mturk git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59115 13f79535-47bb-0310-9956-ffa450edef68
* Fix a compile problem - ldap_url_parse_ext should be apr_ldap_url_parse_ext().minfrin2004-08-031-1/+1
| | | | | | | | | | PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59112 13f79535-47bb-0310-9956-ffa450edef68
* Overhaul support for LDAP URL parsing. Instead of using incompatibleminfrin2004-08-031-207/+168
| | | | | | | | | | | | 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
* Add a note to indicate deprecated code in APR v1.0. This code will be fixedminfrin2004-08-021-0/+7
| | | | | | | | | | | after the release of APR v1.0. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@59104 13f79535-47bb-0310-9956-ffa450edef68
* Relicense APR under Apache License, Version 2.0.jerenkrantz2004-02-131-49/+10
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58989 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
* With luck, this finally closes Blair's build issues.wrowe2002-12-111-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58803 13f79535-47bb-0310-9956-ffa450edef68
* Eliminate LDAP_CONST ... needs to be decorated if we plan to deal withwrowe2002-12-111-5/+5
| | | | | | | this issue anyways. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58800 13f79535-47bb-0310-9956-ffa450edef68
* Since there has been only a single comment and no objections, beginwrowe2002-12-111-0/+757
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