- Sep 30, 2003
-
-
Paul J. Reder authored
Update as a result of a backport. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101359 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101357 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101356 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101354 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101353 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 29, 2003
-
-
Paul J. Reder authored
Update to document a completed backport git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101352 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101344 13f79535-47bb-0310-9956-ffa450edef68
-
Thom May authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101343 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Pane authored
(the old code assumed that apr_atomic_t and apr_uint32_t were interchangeable). Also, add more detailed comments on how one of the synchronization functions works. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101340 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 28, 2003
-
-
Cliff Woolley authored
closing early (see line 343) and the ap_listeners list being nonsense. End result is a segfault if something is already listening on :: on our port when httpd is started. Submitted by: Colm MacCarthaigh <colm@stdlib.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101338 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
or non-mapped address. Submitted by: Colm MacCarthaigh <colm@stdlib.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101337 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
use mapped/non-mapped addresses. Also cleared up that not all platforms support v6-only sockets. Submitted by: Colm MacCarthaigh <colm@stdlib.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101336 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
submitted by: Colm MacCarthaigh <colm@stdlib.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101335 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 27, 2003
-
-
Sander Striker authored
Update to account for backport. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101333 13f79535-47bb-0310-9956-ffa450edef68
-
Sander Striker authored
Update to account for backport. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101331 13f79535-47bb-0310-9956-ffa450edef68
-
Sander Striker authored
Update to account for backport. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101329 13f79535-47bb-0310-9956-ffa450edef68
-
Sander Striker authored
Update to account for backport. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101327 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 25, 2003
-
-
Jeff Trawick authored
Submitted by: Bill Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101311 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
filesystem name are rejected with 403. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101310 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 23, 2003
-
-
Cliff Woolley authored
by mod_usertrack. This is because of the use of strstr() in spot_cookie() the original mod_usertrack.c to find the name of the cookie. strstr(), by virtue of looking for a substring instead of an exact match, can mis-identify the cookie "MyID" as the cookie "ID" or "My". So, if you were looking for the value of the cookie "ID", but only the cookie "MyID" was returned by the browser, mod_usertrack.c would return the value of the "MyID" cookie in place of the "ID" you were looking for. Even more seriously, because strstr is invoked before the cookie name is separated from its cookie value, a cookie and value like "myCookie=thisisnotIDeal" will be a false positive if you told mod_usertrack the cookie name was ID. Furthermore, using this example, "eal" will get logged as the value of the cookie; now that strstr has incorrectly identified the substring "ID" as the cookie name, the following "e" (assumed to be the "=" sign) gets discarded, and the remaining content used as the value of the cookie. Replacing the strstr() with a more robust regex match fixes this problem. PR: 16661 Submitted by: Manni Wood <manniwood@planet-save.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101306 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 22, 2003
-
-
William A. Rowe Jr authored
SSL-C doesn't declare the char* file arg const, so we shouldn't either. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101303 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 19, 2003
-
-
Jeff Trawick authored
config file name. Submitted by: Aryeh Katz <aryeh@secured-services.com> Reviewed by: G�nter Knauf, Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101297 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
5.004: my $cntopen = () = ($before =~ m|^\s*<[^/].*$|mg); git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101296 13f79535-47bb-0310-9956-ffa450edef68
-
Erik Abele authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101294 13f79535-47bb-0310-9956-ffa450edef68
-
Jason S. Lingohr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101293 13f79535-47bb-0310-9956-ffa450edef68
-
Jason S. Lingohr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101292 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 18, 2003
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101289 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101287 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101285 13f79535-47bb-0310-9956-ffa450edef68
-
Jason S. Lingohr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101280 13f79535-47bb-0310-9956-ffa450edef68
-
Jason S. Lingohr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101278 13f79535-47bb-0310-9956-ffa450edef68
-
Jason S. Lingohr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101277 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 17, 2003
-
-
Jason S. Lingohr authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101269 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101267 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 16, 2003
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101253 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101247 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 15, 2003
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101243 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 13, 2003
-
-
Brian Pane authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101236 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 12, 2003
-
-
Roy T. Fielding authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101234 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
This fixes the cache code so that responses can be cached if they have an Expires header but no Etag or Last-Modified headers. PR 23130. Submitted by: <bjorn@exoweb.net> Reviewed by: Paul J. Reder git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101231 13f79535-47bb-0310-9956-ffa450edef68
-