]>
granicus.if.org Git - apache/log
Jim Jagielski [Tue, 22 Nov 2016 14:29:36 +0000 (14:29 +0000)]
Oops. update logno
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770844 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 22 Nov 2016 14:06:28 +0000 (14:06 +0000)]
mod_macro improvements to bypass "expected" warnings and conflicts
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770843 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Tue, 22 Nov 2016 12:22:31 +0000 (12:22 +0000)]
From Norm:
NWGNUsocachmem needs to find mod_status.h
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770828 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Tue, 22 Nov 2016 09:51:37 +0000 (09:51 +0000)]
Removing unused warning after r1764961 changes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770817 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Tue, 22 Nov 2016 01:53:40 +0000 (01:53 +0000)]
remove Location: header checks for absolute URL
https://tools.ietf.org/html/rfc7231#section-7.1.2
The "Location" header field is used in some responses to refer to a
specific resource in relation to the response. The type of
relationship is defined by the combination of request method and
status code semantics.
Location = URI-reference
The field value consists of a single URI-reference. When it has the
form of a relative reference ([RFC3986], Section 4.2), the final
value is computed by resolving it against the effective request URI
([RFC3986], Section 5).
There is even an example with no scheme:
Location: /People.html#tim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770786 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Fritsch [Mon, 21 Nov 2016 22:15:09 +0000 (22:15 +0000)]
update docs xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770772 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Fritsch [Mon, 21 Nov 2016 22:13:05 +0000 (22:13 +0000)]
Describe new behavior of ServerLimit
This has changed a bit after the fix for PR 53555. Better wording is welcome.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770771 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Fritsch [Mon, 21 Nov 2016 21:41:23 +0000 (21:41 +0000)]
mpm_event: add clarifying comment
from jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770768 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Fritsch [Mon, 21 Nov 2016 20:46:51 +0000 (20:46 +0000)]
Use all available scoreboard slots
Allow to use all slots up to ServerLimit. This makes 'scoreboard full'
errors much less likely.
And if ther is a situation where the scoreboard is full, don't make any
more processes finish gracefully due to reduced load until some old
processes have terminated. Otherwise, the situation would get worse once
the load increases again.
ap_daemon_limit is renamed to the more descriptive active_server_limit,
to make sure that all its uses are taken care of.
PR 53555
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770752 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Fritsch [Mon, 21 Nov 2016 20:32:40 +0000 (20:32 +0000)]
ap_reclaim_child_processes(): Implement terminate immediately
The behavior for terminate == 1 was documented but not implemented. Do
that now.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770750 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 19 Nov 2016 16:23:09 +0000 (16:23 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770502 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 19 Nov 2016 16:20:20 +0000 (16:20 +0000)]
XML updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770501 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Fri, 18 Nov 2016 15:19:00 +0000 (15:19 +0000)]
mod_http2: limiting new PUSHes to GET only, preventing 103 responses when expecting a 100
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770395 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 17 Nov 2016 15:43:54 +0000 (15:43 +0000)]
addendum to r1769760 to make it generate 100 status lines
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1770220 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Wed, 16 Nov 2016 12:05:53 +0000 (12:05 +0000)]
Actually cause the Host header to be overridden, as noted by rpluem,
and simplify now that there isn't a log-only mode.
I believe this logic to be busted. Given this request;
GET http://distant-host.com/ HTTP/1.1
Host: proxy-host
we would now fail to evaluate the proxy-host virtual host rules.
This seems like a breaking change to our config. mod_proxy already
follows this rule of RFC7230 section 5.4;
When a proxy receives a request with an absolute-form of
request-target, the proxy MUST ignore the received Host header field
(if any) and instead replace it with the host information of the
request-target. A proxy that forwards such a request MUST generate a
new Host field-value based on the received request-target rather than
forward the received Host field-value.
Section 5.5 of RFC7230 has this to say;
Once the effective request URI has been constructed, an origin server
needs to decide whether or not to provide service for that URI via
the connection in which the request was received. For example, the
request might have been misdirected, deliberately or accidentally,
such that the information within a received request-target or Host
header field differs from the host or port upon which the connection
has been made. If the connection is from a trusted gateway, that
inconsistency might be expected; otherwise, it might indicate an
attempt to bypass security filters, trick the server into delivering
non-public content, or poison a cache. See Section 9 for security
considerations regarding message routing.
Section 5.3.1 states;
To allow for transition to the absolute-form for all requests in some
future version of HTTP, a server MUST accept the absolute-form in
requests, even though HTTP/1.1 clients will only send them in
requests to proxies.
It seems to me we should simply trust the Host: header and dump this whole
mess. If we want to reject requests in absolute form after the proxy modules
have had a chance to accept them, that wouldn't be a bad solution.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769965 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Tue, 15 Nov 2016 22:57:36 +0000 (22:57 +0000)]
documentation rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769900 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Tue, 15 Nov 2016 22:57:18 +0000 (22:57 +0000)]
Added a note in the mod_headers docs about Content-Type and setifempty
This note has been added as a follow up of a stack overflow post
(thanks to Michael Allan for the research):
http://stackoverflow.com/questions/
29398123 /apache-2-4-set-mime-type-of-file-without-extension
After a chat in #httpd-dev it seems that the issue boils down to how %{CONTENT_TYPE}
is evaluated in util_expr_eval.c (r->content_type) vs how setifempty is (only a check
of the response headers). This particular behavior might be a bug or feature,
but it is worth to alert our users.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769899 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Tue, 15 Nov 2016 20:43:01 +0000 (20:43 +0000)]
documentation rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769878 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Tue, 15 Nov 2016 20:42:35 +0000 (20:42 +0000)]
Updated the perf-tuning documentation
Removed some out of date references and re-wrote
some sections. Added also a banner at the top of
the page to warn the users about stale content.
The next step is to improve the accept() related
documentation introducing the latest changes made
for event (and how awesome event is).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769877 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Tue, 15 Nov 2016 09:06:55 +0000 (09:06 +0000)]
http: Allow unknown response status' lines returned in the form of:
HTTP/x.x xxx Status xxx
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769760 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Tue, 15 Nov 2016 06:42:48 +0000 (06:42 +0000)]
Fix some HTML tags
</br> --> <br />
Couls also be <br> or <br/> but some (very) old clients don't like it.
httpd is not really consistent on it. (personnlaly <br> would be just fine for me but <br /> is the most commonly used form)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769737 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Tue, 15 Nov 2016 03:51:20 +0000 (03:51 +0000)]
xform
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769719 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Tue, 15 Nov 2016 03:50:42 +0000 (03:50 +0000)]
add an <IfFile> config section like <IfDefine>
It allows a non httpd config file to be used as a marker directly in
httpd.conf without hiding logic in a script in front of apachectl
to do test -f and pass extra -D's.
This is something we've had in IBM's httpd distro for a little bit and
hadn't remembered to share. I've seen some questions/config files come
up in a few places lately that would benefit from this as an option.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769718 13f79535 -47bb-0310-9956-
ffa450edef68
Eric Covener [Tue, 15 Nov 2016 03:15:15 +0000 (03:15 +0000)]
reorganize mod_socache_redis so it compiles w/o apr-redis
It looks like this was the original intent. The provider
is not registered if apr-redis is missing.
It was previously failing to compile due to the dirconf being
hidden behind the #ifdef guard but not the routine module
code that used it.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769712 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Mon, 14 Nov 2016 14:17:21 +0000 (14:17 +0000)]
Documentation rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769638 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Mon, 14 Nov 2016 14:16:50 +0000 (14:16 +0000)]
Unified duplicate warning in mod_proxy ProxyPass documentation.
Also changed terminology to be in sync with:
https://httpd.apache.org/docs/current/mod/directive-dict.html#Context
It was confusing in my opinion to read that ProxyPass wasn't supported
for the <Directory> context (since "directory" semantic is already
overloaded).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769637 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Mon, 14 Nov 2016 12:10:50 +0000 (12:10 +0000)]
Backported in 2.4.21.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769612 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Mon, 14 Nov 2016 11:50:17 +0000 (11:50 +0000)]
Axe backported CHANGES entries.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769606 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Mon, 14 Nov 2016 11:38:59 +0000 (11:38 +0000)]
mod_http2: fixes for compiler warnings
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769600 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Mon, 14 Nov 2016 11:15:39 +0000 (11:15 +0000)]
update after mod_http2 backport
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769596 13f79535 -47bb-0310-9956-
ffa450edef68
Luca Toscano [Mon, 14 Nov 2016 10:58:06 +0000 (10:58 +0000)]
Updated changelog with the last change of mod_proxy_fcgi
r1759984, r1760018 and r1752347 are all changes related
to a bug fixed for mod_proxy_fcgi.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769593 13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Mon, 14 Nov 2016 10:57:46 +0000 (10:57 +0000)]
* modules/ssl/ssl_engine_vars.c (ssl_var_lookup_ssl_cert): Use const
ASN1_OBJECT for X509_ALGOR_get0() for OpenSSL >= 1.1.0 per
https://github.com/openssl/openssl/commit/
ac4e257747075958d37665f327bdf685dd2478ab
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769592 13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Mon, 14 Nov 2016 10:43:35 +0000 (10:43 +0000)]
Remove trailing whitespace.
Submitted by: Josef Radinger
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769590 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Sun, 13 Nov 2016 21:30:40 +0000 (21:30 +0000)]
mod_http2: H2PushResource directive for early pushing
mod_proxy_http2: Link header uris are reverse mapped
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769550 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sun, 13 Nov 2016 13:35:13 +0000 (13:35 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769493 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sun, 13 Nov 2016 13:34:29 +0000 (13:34 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769492 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Fri, 11 Nov 2016 19:38:28 +0000 (19:38 +0000)]
ssl: clear the error queue before SSL_read/write/accept()
If other modules or libraries do not clear the OpenSSL error queue after
a failed operation, other code that relies on SSL_get_error() -- in
particular, code that deals with SSL_ERROR_WANT_READ/WRITE logic -- will
malfunction later on. To prevent this, explicitly clear the error queue
before calls like SSL_read/write/accept().
PR: 60223
Submitted by: Paul Spangler <paul.spangler ni.com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769332 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Fri, 11 Nov 2016 17:00:06 +0000 (17:00 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769315 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Fri, 11 Nov 2016 16:59:05 +0000 (16:59 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769314 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Thu, 10 Nov 2016 20:53:21 +0000 (20:53 +0000)]
Remove unnecessary apr_table_do() function casts
Function casts can cause hard-to-debug corruption issues if a
declaration is accidentally changed to be incompatible. Luckily, most of
the function casts for apr_table_do() calls are unnecessary. Remove
them, and adjust the signatures for helpers that weren't taking void* as
the first argument.
The remaining helper that requires a cast is http_filter.c's
form_header_field(), which is probably where many of these casts were
copy-pasted from. I have left it as-is: it has other direct callers
besides apr_table_do(), and it's already documented with warnings not to
change the function signature.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1769192 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Sat, 5 Nov 2016 16:47:43 +0000 (16:47 +0000)]
heh... bring memcache up to redis :)
mod_status info
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768245 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Sat, 5 Nov 2016 14:47:17 +0000 (14:47 +0000)]
Needs LOGNO #s
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768225 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 5 Nov 2016 13:36:34 +0000 (13:36 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768213 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 5 Nov 2016 13:35:51 +0000 (13:35 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768212 13f79535 -47bb-0310-9956-
ffa450edef68
Christophe Jaillet [Sat, 5 Nov 2016 08:27:43 +0000 (08:27 +0000)]
Remove redundant test.
Follow-up to r1759547
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768160 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 4 Nov 2016 23:06:08 +0000 (23:06 +0000)]
And provide some nice usage stats. Could be prettier, for sure.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768120 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 4 Nov 2016 17:04:28 +0000 (17:04 +0000)]
And the socache provider interface for Redis
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1768070 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 3 Nov 2016 17:27:06 +0000 (17:27 +0000)]
mod_proxy_http2: workaround for newly proposed 103 status code
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767936 13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Thu, 3 Nov 2016 11:55:29 +0000 (11:55 +0000)]
fix properties, update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767875 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 11:20:03 +0000 (11:20 +0000)]
Rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767870 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 11:04:07 +0000 (11:04 +0000)]
trying out to fix why the other secction not loading.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767867 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 10:57:10 +0000 (10:57 +0000)]
Rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767865 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 10:53:29 +0000 (10:53 +0000)]
Rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767864 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 10:51:26 +0000 (10:51 +0000)]
Rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767863 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 10:36:16 +0000 (10:36 +0000)]
built and translated the english version to spanish.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767857 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 10:34:29 +0000 (10:34 +0000)]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767855 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 10:31:16 +0000 (10:31 +0000)]
built and translated the english version to spanish.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767853 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 07:21:08 +0000 (07:21 +0000)]
fixing English revision comment
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767828 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 00:50:07 +0000 (00:50 +0000)]
rebuilt to add Spanish
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767812 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 00:46:58 +0000 (00:46 +0000)]
cheked the translation status page, fixing the error.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767811 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 00:42:49 +0000 (00:42 +0000)]
updated the English revision to
1767808
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767809 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Thu, 3 Nov 2016 00:40:12 +0000 (00:40 +0000)]
Added the link to the unlinked page in the index http://httpd.apache.org/docs/trunk/howto/
hopping to make the web more user friendly
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767808 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Wed, 2 Nov 2016 23:50:42 +0000 (23:50 +0000)]
mod_http2: fix for beam double cleanup crashes introduced in 1.7.7
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767803 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Wed, 2 Nov 2016 22:37:21 +0000 (22:37 +0000)]
generated the HTML file
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767795 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Wed, 2 Nov 2016 22:33:55 +0000 (22:33 +0000)]
Changes done by Daniel, reviewed by me, adding the html file and meta file to the repo.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767794 13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 2 Nov 2016 11:28:25 +0000 (11:28 +0000)]
Fix typo.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767638 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Tue, 1 Nov 2016 20:25:18 +0000 (20:25 +0000)]
update after backport
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767564 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Tue, 1 Nov 2016 19:40:37 +0000 (19:40 +0000)]
mod_http2: proper parsing and forwarding of multiple or unnaounce 1xx responses
mod_proxy_http2: improved robustness when main connection gets aborted
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767553 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Mon, 31 Oct 2016 13:27:00 +0000 (13:27 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767279 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Mon, 31 Oct 2016 13:26:17 +0000 (13:26 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767278 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Sun, 30 Oct 2016 20:41:55 +0000 (20:41 +0000)]
mod_http2: c89 slippage fixed
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767181 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Sun, 30 Oct 2016 20:38:50 +0000 (20:38 +0000)]
mod_http2: using int queue instead of ihash for stream output event handling
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767180 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Sun, 30 Oct 2016 19:54:32 +0000 (19:54 +0000)]
Updated the Download secction for match the english version, reviewed the sintax too.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767179 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Sat, 29 Oct 2016 22:17:11 +0000 (22:17 +0000)]
mod_http2: earlier slave connection allocator destroy, code cleanups
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1767128 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Fri, 28 Oct 2016 10:56:03 +0000 (10:56 +0000)]
Follow up to r1739201.
These APR_TIMEUP special cases are now handled by ap_map_http_request_error().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766998 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 27 Oct 2016 16:54:35 +0000 (16:54 +0000)]
mod_http2: update to v1.7.8-DEV after backport
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766857 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Thu, 27 Oct 2016 16:12:20 +0000 (16:12 +0000)]
mod_http2: connection shutdown revisited
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766851 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Wed, 26 Oct 2016 15:14:11 +0000 (15:14 +0000)]
mod_http2: AP_DEBUG_ASSERT changed to ap_assert
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766691 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Mon, 24 Oct 2016 15:45:07 +0000 (15:45 +0000)]
update after backport
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766424 13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Sun, 23 Oct 2016 20:34:37 +0000 (20:34 +0000)]
fix props, update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766316 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Sun, 23 Oct 2016 20:02:59 +0000 (20:02 +0000)]
adding to repo to continue elsewhere using Git.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766314 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Sun, 23 Oct 2016 20:00:47 +0000 (20:00 +0000)]
adding the generated file html
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766313 13f79535 -47bb-0310-9956-
ffa450edef68
Luis Gil [Sun, 23 Oct 2016 19:57:57 +0000 (19:57 +0000)]
Adding the translated verion file done by Daniel Ferradal
Reviewd and built the html doc files.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766312 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Sun, 23 Oct 2016 18:16:42 +0000 (18:16 +0000)]
mod_http2: fixed potential crash in beam memory handling introduced in 1.7.x changes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766308 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 22 Oct 2016 16:32:51 +0000 (16:32 +0000)]
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766210 13f79535 -47bb-0310-9956-
ffa450edef68
Lucien Gentis [Sat, 22 Oct 2016 16:31:59 +0000 (16:31 +0000)]
XML update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766209 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Fri, 21 Oct 2016 21:44:29 +0000 (21:44 +0000)]
mpm_unix: Apache fails to start if previously crashed then restarted with
the same PID (e.g. in container). PR 60261.
Proposed by: Val <valentin.bremond gmail.com>
Reviewed by: ylavic
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766160 13f79535 -47bb-0310-9956-
ffa450edef68
Yann Ylavic [Fri, 21 Oct 2016 21:05:39 +0000 (21:05 +0000)]
Fix -Wunused-but-set-variable warnings.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766129 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 21 Oct 2016 18:51:39 +0000 (18:51 +0000)]
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766105 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 21 Oct 2016 18:49:39 +0000 (18:49 +0000)]
Fine tune description
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766103 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 21 Oct 2016 18:37:44 +0000 (18:37 +0000)]
xfrms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766099 13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 21 Oct 2016 18:32:44 +0000 (18:32 +0000)]
Some caching info
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1766097 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Fri, 21 Oct 2016 09:35:18 +0000 (09:35 +0000)]
update after xml change
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765975 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Fri, 21 Oct 2016 09:34:56 +0000 (09:34 +0000)]
added mpm advice to http2 howto
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765974 13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Thu, 20 Oct 2016 08:29:14 +0000 (08:29 +0000)]
eol-style = native
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765768 13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Thu, 20 Oct 2016 08:26:17 +0000 (08:26 +0000)]
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765767 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Tue, 18 Oct 2016 16:30:43 +0000 (16:30 +0000)]
Appears we cannot disallow this whitespace, since the chunk BNF coexisted
with the implied *LWS rule, before RFC7230 eliminated the later. Whether
this is actually OWS or BWS is an editorial decision beyond our pay grade.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765475 13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Tue, 18 Oct 2016 14:56:07 +0000 (14:56 +0000)]
When redrawing the parser, ap_get_http_token looked to be useful, but there's
no application for this yet in httpd, so hold off adding this function when
we backport the enhancements. ap_scan_http_token was entirely sufficient.
If the community wants this new function, we can add it when backporting
work is complete.
This patch, and the earlier patches Friday actually demanded an mmn major
bump due to struct member changes. In any final backport, new members must
be added to the end of the struct to retain an mmn minor designation.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765451 13f79535 -47bb-0310-9956-
ffa450edef68
Stefan Eissing [Tue, 18 Oct 2016 12:05:04 +0000 (12:05 +0000)]
mod_http2: netware build add new symbol used from nghttp2
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765420 13f79535 -47bb-0310-9956-
ffa450edef68
Jacob Champion [Mon, 17 Oct 2016 19:33:51 +0000 (19:33 +0000)]
docs: add "threat model" warning to ProxyHTMLMeta
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1765357 13f79535 -47bb-0310-9956-
ffa450edef68