r_purge_sent(beam);
h2_blist_cleanup(&beam->send_list);
report_consumption(beam, 0);
- ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, beam->send_pool,
- "h2_beam(%d-%s): aborted", beam->id, beam->tag);
}
if (beam->m_cond) {
apr_thread_cond_broadcast(beam->m_cond);
/* Called from the red thread to add buckets to the beam */
if (enter_yellow(beam, &bl) == APR_SUCCESS) {
- ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, beam->send_pool,
- "h2_beam(%d-%s): send", beam->id, beam->tag);
r_purge_sent(beam);
if (red_brigade && !beam->send_pool) {
beam_set_send_pool(beam, red_brigade->p);
/* Called from the green thread to take buckets from the beam */
if (enter_yellow(beam, &bl) == APR_SUCCESS) {
transfer:
- ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, beam->send_pool,
- "h2_beam(%d-%s): receive", beam->id, beam->tag);
if (beam->aborted) {
if (beam->recv_buffer && !APR_BRIGADE_EMPTY(beam->recv_buffer)) {
apr_brigade_cleanup(beam->recv_buffer);
* @macro
* Version number of the http2 module as c string
*/
-#define MOD_HTTP2_VERSION "1.8.4"
+#define MOD_HTTP2_VERSION "1.8.5"
/**
* @macro
* release. This is a 24 bit number with 8 bits for major number, 8 bits
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
*/
-#define MOD_HTTP2_VERSION_NUM 0x010804
+#define MOD_HTTP2_VERSION_NUM 0x010805
#endif /* mod_h2_h2_version_h */