- Aug 09, 2002
-
-
William A. Rowe Jr authored
Since library detection is _not_ complete, and this code is extremely alpha quality, backout the apr-iconv for Win32 changes from the .40 release. Many have objected [not -1 exactly] to forcing iconv for any user to build xlate, and the detection/fixup patches are a blocker for releasing this overdue version. Recommiting immediately after tagging this sans-iconv point for .40, and create a patch anyone can apply to enable this for the release tarball. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96322 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 08, 2002
-
-
Greg Ames authored
extra eyeballs would be appreciated. If it's not really dead, then we need to re-arrange this function so that earlier changes to the r aren't lost. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96321 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
chain. PR: Obtained from: Submitted by: Peter Van Biesen <peter.vanbiesen@vlafo.be> Reviewed by: Graham Leggett <minfrin@apache.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96320 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Ames authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96319 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 07, 2002
-
-
Ian Holsman authored
This will allow things like... SetEnv gzip-only-text/html 1 BrowserMatch "GECKO" gzip-only-text/html=0 Obtained from: Andr� Schild <A.Schild@aarboard.ch> Reviewed by: Ian Holsman git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96318 13f79535-47bb-0310-9956-ffa450edef68
-
Sander Striker authored
return anything. Submitted by: Thom May <thom@planetarytramp.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96317 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 06, 2002
-
-
William A. Rowe Jr authored
Pardon je, it seems the most obvious solutions are always the easiest to incorporate new bugs. Solve the 0index.html bad uri bug. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96316 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Wasn't the only one with the essential idea, co-credit where credit is due. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96315 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This was never a 'vulnerability'... the APR_FILEPATH_SECUREROOT flag passed to apr_filepath_merge refused to merge any rooted 'addpath'. However, that isn't the traditional 1.3 behavior, so fly past any leading '/'s on the way to merging the uri to the DocumentRoot. PR: 10946 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96314 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
worth noting git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96313 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 05, 2002
-
-
Cliff Woolley authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96312 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
Submitted by: Zeno <zeno@cgisecurity.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96311 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 04, 2002
-
-
William A. Rowe Jr authored
This was an identity... sort of silly really. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96309 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
INVALID_SOCKET is -1 and appropriate to test throughout. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96308 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Lots o bugs and emits here. accept_socket is a handle, although vc and the psdk aren't good about remembering that. never use GetLastError() to ap_log_error. remember that we could have a socket closed by our neighbor while we were blocking. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96307 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
We generate an .rc now, not a .h git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96306 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Outch! Always check completion against actual socket/pipe/file handles, never look at the completion event itself. Could be part of the zone alarm mischief. Note also that waiting on two events is better than waking every few minutes. Factoring out max_requests_per_child_hit or whatever that event name is will help here. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96305 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Just an observation, we potentially read/retain far too much of the body, and this can be optimized. Not a problem for sendfile based byterange requests, but potentially lethal to serve byterange requests of any parsed or cgi generated responses. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96304 13f79535-47bb-0310-9956-ffa450edef68
-
Ian Holsman authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96303 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 03, 2002
-
-
William A. Rowe Jr authored
We describe body lengths throughout apr in apr_off_t lengths. While we all agree we won't ever cache an entity that huge in memory, the disk cache is another matter [e.g. if we cache an existing file.] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96302 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Revert to CRYPTO_malloc_init for non-rsa [gotta read the diffs more closely the first time.] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96301 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Support rsaref compilation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96300 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
catch up with the apr_atoll -> apr_atoi64 rename git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96299 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Ignore goodness for VC6 .mak file exporters git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96298 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
More ignore goodness git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96297 13f79535-47bb-0310-9956-ffa450edef68
-
Astrid Kessler authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96296 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 02, 2002
-
-
Ian Holsman authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96294 13f79535-47bb-0310-9956-ffa450edef68
-
Astrid Kessler authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96293 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96292 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96291 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
Reviewed by: Hiroaki KAWAI <hawk@bcl.t.u-tokyo.ac.jp> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96290 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96289 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96288 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96287 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96286 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96285 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96284 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 01, 2002
-
-
Jeff Trawick authored
an environment variable. Add the ability to register a filter of type other than AP_FTYPE_RESOURCE. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96283 13f79535-47bb-0310-9956-ffa450edef68
-
Astrid Kessler authored
Reviewed by: Michael Schroepl <Michael.Schroepl@telekurs.de> Andr� Malo <nd@perlig.de> Erik Abele <erik@codefaktor.de> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96282 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
correctly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96276 13f79535-47bb-0310-9956-ffa450edef68
-