- May 06, 2009
-
-
Rainer Jung authored
- do not include graceful commands and duplicate start|restart|stop - add ServerRoot to the parameters encapsulated by "-n" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@772356 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 23, 2009
-
-
Eric Covener authored
$ bash -x bin/apachectl -t -c "foo bar" before: +bin/httpd -t -c foo bar after: +bin/httpd -t -c 'foo bar' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@767994 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 21, 2009
-
-
Mark J. Cox authored
share a CVE name where the flaw was due to a shared code base, and this isn't the case for the mod_jk CVE-2008-5519 issue. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@767089 13f79535-47bb-0310-9956-ffa450edef68
-
Nick Kew authored
Patch by Marko Kevac. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@766938 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 16, 2009
-
-
Jeff Trawick authored
Dynamically allocate the AF_UNIX sockaddr based on the required filename size. For some platforms (e.g., Solaris, OS X, FreeBSD), this allows longer socket filenames to be used. When the name is too long, the failure reporting is more consistent and a socket with truncated pathname is not left stranded. The user still needs to use ScriptSock to specify a shorter name. An extra unlink() failure message may be generated when attempting to clean up the socket after a daemon initialization error; the message is surpressed for ENOTENT, but not for ENAMETOOLONG. PR: 47037 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@765725 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 11, 2009
-
-
Ruediger Pluem authored
Submitted by: mturk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@764239 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 10, 2009
-
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@763885 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 08, 2009
-
-
Ruediger Pluem authored
body by closing the connection to the backend in this case instead of reusing it. PR: 46949 Reviewed by: jim, wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@763394 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 02, 2009
-
-
Rainer Jung authored
data of the AJP 13 protocol. Since the servlet spec allows to retrieve it via getRemotePort(), we provide the port to the Tomcat connector as an additional request attribute. Modern/future Tomcat versions know how to retrieve the remote port from the attribute AJP_REMOTE_PORT. See: https://issues.apache.org/bugzilla/show_bug.cgi?id=41263 http://svn.eu.apache.org/viewvc?view=rev&revision=756926 http://svn.eu.apache.org/viewvc?view=rev&revision=757223 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@761329 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
unbundled modules an MMN to check for git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@761246 13f79535-47bb-0310-9956-ffa450edef68
-
- Apr 01, 2009
-
-
Ruediger Pluem authored
stricter checking of remote server certificates. (docs/manual/mod/mod_ssl.xml) Documentation of SSLProxyCheckPeerExpire and SSLProxyCheckPeerCN. (modules/proxy/mod_proxy_http.c) Set the hostname of the request URL as note on the connection. (modules/ssl/ssl_private.h) Add proxy_ssl_check_peer_expire and proxy_ssl_check_peer_cn fields to the SSLSrvConfigRec. (modules/ssl/ssl_engine_config.c) Directives stuff for SSLProxyCheckPeerExpire and SSLProxyCheckPeerCN. (modules/ssl/ssl_engine_io.c) Check whether the remote servers certificate is expired / if there is a mismatch between the requested hostanme and the remote server certificates CN field. Be able to parse ASN1 times. (modules/ssl/mod_ssl.c) Directives stuff for SSLProxyCheckPeerExpire and SSLProxyCheckPeerCN. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@760866 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 31, 2009
-
-
Nick Kew authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@760379 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 30, 2009
-
-
Nick Kew authored
When a script returns a no-body response code, pretend it was a HEAD request so as to drop any body the script might erroneously generate. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@760167 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759946 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
returns EINPROGRESS and a subsequent poll() returns only POLLERR. Observed on HP-UX. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759832 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 29, 2009
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759681 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 27, 2009
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759046 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 26, 2009
-
-
Eric Covener authored
to allow filenames with globbing characters to be retrieved instead of presented in a directory listing. Submitted by: Dan Poirier <poirier pobox.com> Reviewed by: covener git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758626 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 25, 2009
-
-
Jeff Trawick authored
of module state across unload/load. The existing idiom used by modules to associate userdata with pglobal doesn't work in the earliest phases of module execution. (This does expose pglobal as an implementation detail, but it would be great to unexpose it if at all possible (but modules already have access to pglobal at almost all stages of execution anyway).) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758173 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 24, 2009
-
-
Ruediger Pluem authored
PR: 44948 Submitted by: Dan Poirier <poirier pobox.com> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@757741 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 23, 2009
-
-
Paul Querna authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@757429 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 20, 2009
-
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@756687 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 12, 2009
-
-
Ruediger Pluem authored
HTTP response splitting. PR: 46837 Submitted by: Geoff Keating <geoffk apple.com> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@752812 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 04, 2009
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@750108 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 02, 2009
-
-
Sander Temme authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@749467 13f79535-47bb-0310-9956-ffa450edef68
-
Sander Temme authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@749466 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
the ab issue was with EALREADY, not EINPROGRESS git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@749441 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
with kqueue (BSD/OS X) and excessive CPU with event ports (Solaris). The apr_pollset API requires that a socket be removed from the pollset whenever there is a change to the requested events. The socket must also be removed when it is closed. This wasn't completely implemented. PR: 44584 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@749438 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 21, 2009
-
-
Lars Eilebrecht authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@746541 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 12, 2009
-
-
Roy T. Fielding authored
on a 304 response so that the metadata does not differ from 200 response. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@743814 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 07, 2009
-
-
Eric Covener authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@741951 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 02, 2009
-
-
Lars Eilebrecht authored
that the Etag value is properly quoted when adding the gzip marker. PR 39727. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@740149 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 01, 2009
-
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@739690 13f79535-47bb-0310-9956-ffa450edef68
-
Roy T. Fielding authored
Submitted by: Peter Harlow (CLA on file) PR: 37185 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@739677 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 30, 2009
-
-
Roy T. Fielding authored
from core. We now exclude Content-Type from responses for which a media type has not been configured via mime.types, AddType, ForceType, or some other mechanism. MMN major bump to NZ time. PR: 13986 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@739382 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 27, 2009
-
-
Paul Querna authored
Submitted by: Ryan Phillips <ryan-apache trolocsis.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@737973 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 18, 2009
-
-
Rainer Jung authored
trunk and add removal to CHANGES. The module has been removed in r711470. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@735365 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 16, 2009
-
-
Rainer Jung authored
Addon to r734973. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@735056 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@734896 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 12, 2009
-
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733699 13f79535-47bb-0310-9956-ffa450edef68
-