-*- coding: utf-8 -*-
Changes with Apache 2.5.0
- *) mod_http2: h2 status resource follows latest draft, see
- http://www.ietf.org/id/draft-benfield-http2-debug-state-01.txt
- [Stefan Eissing]
-
- *) mod_http2: handling graceful shutdown gracefully, e.g. handling existing
- streams to the end. [Stefan Eissing]
-
*) mod_cache: Use the actual URI path and query-string for identifying the
cached entity (key), such that rewrites are taken into account when
running afterwards (CacheQuickHandler off). PR 21935. [Yann Ylavic]
*) mod_ssl: Fix quick renegotiation (OptRenegotiaton) with no intermediate
in the client certificate chain. PR 55786. [Yann Ylavic]
- *) mod_http2: adding support for intermediate responses.
- [Stefan Eissing]
-
*) mod_reqtimeout: Fix body timeout disabling for CONNECT requests to avoid
triggering mod_proxy_connect's AH01018 once the tunnel is established.
[Yann Ylavic]
{
ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, session->c,
"h2_session(%ld): pre_close", session->id);
- dispatch_event(session, H2_SESSION_EV_PRE_CLOSE, 0, NULL);
+ dispatch_event(session, H2_SESSION_EV_PRE_CLOSE, 0,
+ (session->state == H2_SESSION_ST_IDLE)? "timeout" : NULL);
return APR_SUCCESS;
}