summaryrefslogtreecommitdiff
path: root/CHANGES
Commit message (Collapse)AuthorAgeFilesLines
* * Sync with 2.2.x for backport r332657Ruediger Pluem2005-11-111-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@332658 13f79535-47bb-0310-9956-ffa450edef68
* Note fixes that have been applied to the 2.1.10/2.2 BRANCHJim Jagielski2005-11-081-7/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@331813 13f79535-47bb-0310-9956-ffa450edef68
* * Fix a null pointer dereference in dav_method_mkcol during the handling ofRuediger Pluem2005-11-051-0/+4
| | | | | | | | | errors from dav_auto_checkin. Submitted by: Ghassan Misherghi <ghassanm ucdavis.edu> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@331041 13f79535-47bb-0310-9956-ffa450edef68
* * build/config_vars.sh.in: Prepend DESTDIR to paths to installedJoe Orton2005-11-021-0/+3
| | | | | | | | | apr/apu-config scripts. Submitted by: Torsten Foertsch <torsten.foertsch gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@330246 13f79535-47bb-0310-9956-ffa450edef68
* Move to a different impl which was my 1st concept and that whichJim Jagielski2005-11-011-1/+1
| | | | | | | | | Ruediger likes. Instead of adjusting pointers to areas within the URL, simply copy it over and change it as needed. Easier logic and not that much slower for normal cases. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@330085 13f79535-47bb-0310-9956-ffa450edef68
* Fix a problem where we are doing a case insensitiveJim Jagielski2005-10-311-0/+4
| | | | | | | | | match between the worker and the URL. Instead, only the scheme and hostname are insensitive, the rest should be case sensitive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@329849 13f79535-47bb-0310-9956-ffa450edef68
* * Sync with 2.2.x CHANGESRuediger Pluem2005-10-251-7/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@328468 13f79535-47bb-0310-9956-ffa450edef68
* * Fix PR36906 by not lower caseing the whole worker name. Only lower case theRuediger Pluem2005-10-251-0/+3
| | | | | | | | schema when storing the worker url. Thus preventing case sensitive URI's in BalancerMembers to get broken. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@328463 13f79535-47bb-0310-9956-ffa450edef68
* Async write completion for Event MPMBrian Pane2005-10-241-0/+2
| | | | | | | (backported from async-dev branch to 2.3 trunk) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327945 13f79535-47bb-0310-9956-ffa450edef68
* Redesign of request cleanup and logging to use End-Of-Request bucketBrian Pane2005-10-241-0/+6
| | | | | | | (backport from async-dev branch to 2.3 trunk) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327925 13f79535-47bb-0310-9956-ffa450edef68
* A complete rewrite of support/logresolve.c:Colm MacCarthaigh2005-10-241-0/+3
| | | | | | | | | | | | | * Now uses APR * Supports IPv6 addresses * Slighty less hurtful on memory * archaic (but interesting) notes marked as historical * Will not perform very well without APR >= 1.3 due to lack of buffered file-io. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327909 13f79535-47bb-0310-9956-ffa450edef68
* New version of ap_core_output_filter that does nonblocking writesBrian Pane2005-10-231-0/+2
| | | | | | | (backport from async-dev branch to 2.3 trunk) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327872 13f79535-47bb-0310-9956-ffa450edef68
* Add new connection states for handler and write completionBrian Pane2005-10-231-0/+3
| | | | | | | (backport from async-dev branch to 2.3 trunk) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327870 13f79535-47bb-0310-9956-ffa450edef68
* * Backported r327179. Sync with 2.2.x CHANGES.Ruediger Pluem2005-10-231-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327794 13f79535-47bb-0310-9956-ffa450edef68
* * Fix PR37145 (data loss with httpd-2.0.55 reverse proxy method=post) byRuediger Pluem2005-10-211-0/+4
| | | | | | | | | | | exchanging APR_BRIGADE_CONCAT with ap_save_brigade to ensure that transient buckets get setaside correctly between various iterations of ap_get_brigade calls. Reviewed by: Joe Orton, William Rowe, Jim Jagielski, Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327590 13f79535-47bb-0310-9956-ffa450edef68
* * Fix PR37100 (SEGV in mod_proxy_ajp), by sending the data up the filterRuediger Pluem2005-10-211-0/+3
| | | | | | | | | | | | | | | | | chain immediately instead of spooling it completely before passing it to the filter chain. It contains a bandaid to handle intentional flushes from Tomcat side. Further explanation in code and report. ajp.h: Add ajp_msg_reuse prototype mod_proxy_ajp.c: Adjust logic of ap_proxy_ajp_request ajp_msg.c: Add ajp_msg_reuse ajp_header.c: Adjusting logic of ajp_read_header git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327185 13f79535-47bb-0310-9956-ffa450edef68
* * Fix PR31226 (AddOutputFilterByType deflate not active with mod_proxy), byRuediger Pluem2005-10-211-1/+4
| | | | | | | | | | | | | allowing ap_add_output_filters_by_type to handle proxied requests. Basic tests by jorton and me show that this works, nobody can actually remember why this limitation was introduced at all (r94028) and the mailing list archives also gave no hint. Submitted by: Joe Orton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327179 13f79535-47bb-0310-9956-ffa450edef68
* keep the proxied Content-Length header for a HEAD response. PR 18757Greg Ames2005-10-201-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@327008 13f79535-47bb-0310-9956-ffa450edef68
* * Update to reflect changes of r325960Ruediger Pluem2005-10-201-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@326880 13f79535-47bb-0310-9956-ffa450edef68
* Today a one-time change happens to all CAN- names as they areMark J. Cox2005-10-191-36/+36
| | | | | | | renamed to CVE-. Make this change to our changelog. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@326454 13f79535-47bb-0310-9956-ffa450edef68
* Remove CGI block on OPTIONS method so that scripts canRoy T. Fielding2005-10-181-0/+6
| | | | | | | | | | | respond to OPTIONS directly rather than via server default. PR: 15242 Reviewed-by: Paul Querna, Andre Malo, William A. Rowe, Jr. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@326255 13f79535-47bb-0310-9956-ffa450edef68
* Note new moduleNick Kew2005-10-141-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@321249 13f79535-47bb-0310-9956-ffa450edef68
* Removed this file now that both the doc-only distributionJim Jagielski2005-10-111-3/+3
| | | | | | | | | file 'bootJVM-doc-M.m.p.tar.gz' and source-plus-doc distribution file 'bootJVM-srcdoc-M.m.p.tar.gz' files are in the repository (at the root level of this project). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@312965 13f79535-47bb-0310-9956-ffa450edef68
* mod_proxy_balancer: BalancerManager and proxies correctly handleJim Jagielski2005-10-111-0/+3
| | | | | | | member workers with paths. PR36816. [Ruediger Pluem, Jim Jagielski] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@312963 13f79535-47bb-0310-9956-ffa450edef68
* Merge r265033 from trunk.Colm MacCarthaigh2005-10-111-3/+3
| | | | | | | | Author: trawick Reviewed by: colm git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@312911 13f79535-47bb-0310-9956-ffa450edef68
* merge r265737 from trunk.Colm MacCarthaigh2005-10-111-3/+3
| | | | | | | | Author: trawick Reviewed by: colm git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@312906 13f79535-47bb-0310-9956-ffa450edef68
* Sync changesNick Kew2005-10-091-6/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@307441 13f79535-47bb-0310-9956-ffa450edef68
* use Greg's cleaner fix for CAN-2005-2970Jeff Trawick2005-10-081-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@307221 13f79535-47bb-0310-9956-ffa450edef68
* * Fix PR36883 (mod_proxy_ajp and tomcat issues).Ruediger Pluem2005-10-071-0/+4
| | | | | | | | Submitted by: William Barker <william.barker wilshire.com> Reviewed by: Ruediger Pluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@307195 13f79535-47bb-0310-9956-ffa450edef68
* Sync CHANGES, note the NET_TIME patchWilliam A. Rowe Jr2005-10-071-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@307032 13f79535-47bb-0310-9956-ffa450edef68
* * Sync with 2.2.x branch (r306900)Ruediger Pluem2005-10-061-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@306902 13f79535-47bb-0310-9956-ffa450edef68
* * Synic with 2.2.x branch (r306884)Ruediger Pluem2005-10-061-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@306888 13f79535-47bb-0310-9956-ffa450edef68
* mod_proxy_connect: Fix high CPU loop on systems like UnixWare whichJeff Trawick2005-10-061-0/+4
| | | | | | | | | trigger POLL_ERR or POLL_HUP on a terminated connection. PR: 36951 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@306878 13f79535-47bb-0310-9956-ffa450edef68
* * Fix PR36507 (mod_proxy_balancer does not handle sticky sessions withRuediger Pluem2005-10-051-0/+3
| | | | | | | tomcat correctly). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@295013 13f79535-47bb-0310-9956-ffa450edef68
* * Add entry for r293123.Ruediger Pluem2005-10-031-2/+6
| | | | | | | * Fix bracket style nit. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@293293 13f79535-47bb-0310-9956-ffa450edef68
* sync with 2.2 branchJeff Trawick2005-10-011-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@292950 13f79535-47bb-0310-9956-ffa450edef68
* SECURITY: CAN-2005-2970 (cve.mitre.org)Jeff Trawick2005-09-301-0/+4
| | | | | | | | worker MPM: Fix a memory leak which can occur after an aborted connection in some limited circumstances. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@292809 13f79535-47bb-0310-9956-ffa450edef68
* Backport the Doxygen changes to the 2.2.x branch. No functional changes,Colm MacCarthaigh2005-09-291-2/+2
| | | | | | | | | | | | however backporting these doxygen fixes makes it significantly easier to diff trunk and the 2.2.x branch, to sort out what's what. And we might as well release with nicer doxygen markup. Submitted by: Neale Ranns <neale ranns.org> Reviewed by: Ian Holsman git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@292540 13f79535-47bb-0310-9956-ffa450edef68
* Add a changes entry for the mod_dir/mod_cache stuff.Colm MacCarthaigh2005-09-291-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@292432 13f79535-47bb-0310-9956-ffa450edef68
* Synch with 2.2.x branch.Joe Orton2005-09-251-12/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@291474 13f79535-47bb-0310-9956-ffa450edef68
* * server/request.c (core_opts_merge): When AllowOverride is specifiedJoe Orton2005-09-231-0/+3
| | | | | | | | | | for the directory, ignore the inherited override_opts field. PR: 35330 Submitted by: kabe <kabe sra-tohoku.co.jp> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@291120 13f79535-47bb-0310-9956-ffa450edef68
* Document module movesNick Kew2005-09-211-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290675 13f79535-47bb-0310-9956-ffa450edef68
* Sync to 2.0.x changesWilliam A. Rowe Jr2005-09-201-13/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290519 13f79535-47bb-0310-9956-ffa450edef68
* Backported to 2.2.x branch -- is 2.1.8 identical to 'the 2.2.x branch'?Martin Kraemer2005-09-201-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290467 13f79535-47bb-0310-9956-ffa450edef68
* Fix Bug#: 25659 (Memory leak in ssl_util_algotypeof())Martin Kraemer2005-09-201-0/+3
| | | | | | | Reported by David Blake in 2003, including patch. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290465 13f79535-47bb-0310-9956-ffa450edef68
* As of the 2.2.x docs re-sync, this change is now in the 2.2.x branch.Colm MacCarthaigh2005-09-201-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290442 13f79535-47bb-0310-9956-ffa450edef68
* Backport graceful-stop to the 2.2.x branch.Colm MacCarthaigh2005-09-191-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290189 13f79535-47bb-0310-9956-ffa450edef68
* Backport r239710, r239711, r239732, r239740 and r241815 to the 2.2.x branch;Colm MacCarthaigh2005-09-191-4/+4
| | | | | | | | | Fix PR 28167, which means we stop listening on ports when we do a graceful-restart. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290179 13f79535-47bb-0310-9956-ffa450edef68
* Backported to the 2.1.8/2.2.x treeJim Jagielski2005-09-191-3/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290146 13f79535-47bb-0310-9956-ffa450edef68
* Backport r239420 and r239421 to the 2.2.x branch; EnhanceColm MacCarthaigh2005-09-191-4/+4
| | | | | | | | CacheEnable/CacheDisable to be of use to proxy servers. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290133 13f79535-47bb-0310-9956-ffa450edef68