summaryrefslogtreecommitdiffstats
path: root/modules/http2/h2_session.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2016-01-15 15:27:59 +0100
committerStefan Eissing <icing@apache.org>2016-01-15 15:27:59 +0100
commit17282190d0a2e4563ca2abac6baf614fa2a5f19e (patch)
tree22ca8c4c418c2f72679741259a602f6562ef550b /modules/http2/h2_session.h
parent *) mod_rewrite: Avoid looping on relative substitutions that (diff)
downloadapache2-17282190d0a2e4563ca2abac6baf614fa2a5f19e.tar.xz
apache2-17282190d0a2e4563ca2abac6baf614fa2a5f19e.zip
mod_http2: push diary to avoid duplicate pushes, cache-digest handling, http2-status handler for stats about current http2 connection
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1724820 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_session.h')
-rw-r--r--modules/http2/h2_session.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/modules/http2/h2_session.h b/modules/http2/h2_session.h
index 996dc826ff..17a4ec5a6b 100644
--- a/modules/http2/h2_session.h
+++ b/modules/http2/h2_session.h
@@ -92,17 +92,19 @@ typedef struct h2_session {
unsigned int eoc_written : 1; /* h2 eoc bucket written */
apr_interval_time_t wait_us; /* timout during BUSY_WAIT state, micro secs */
- int unsent_submits; /* number of submitted, but not yet sent
- responses. */
- int unsent_promises; /* number of submitted, but not yet sent
- * push promised */
-
- apr_size_t frames_received; /* number of http/2 frames received */
- apr_size_t frames_sent; /* number of http/2 frames sent */
+ int unsent_submits; /* number of submitted, but not yet written responses. */
+ int unsent_promises; /* number of submitted, but not yet written push promised */
+
int requests_received; /* number of http/2 requests received */
- int responses_sent; /* number of http/2 responses submitted */
+ int responses_submitted; /* number of http/2 responses submitted */
int streams_reset; /* number of http/2 streams reset by client */
- int streams_pushed; /* number of http/2 streams pushed */
+ int pushes_promised; /* number of http/2 push promises submitted */
+ int pushes_submitted; /* number of http/2 pushed responses submitted */
+ int pushes_reset; /* number of http/2 pushed reset by client */
+
+ apr_size_t frames_received; /* number of http/2 frames received */
+ apr_size_t frames_sent; /* number of http/2 frames sent */
+
int max_stream_received; /* highest stream id created */
int max_stream_handled; /* highest stream id completed */