aboutsummaryrefslogtreecommitdiff
path: root/lib/http.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-08-05 10:19:48 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-08-05 14:20:56 +0200
commit4173868f663c6fe7ecd1ba2abab20381002adc6b (patch)
tree6d4dc853b2ad0f7b54a5669be2b159fb1c606e61 /lib/http.h
parent47645f45da29d86865275eacf05b524009902729 (diff)
quiche: initial h3 request send/receive
Diffstat (limited to 'lib/http.h')
-rw-r--r--lib/http.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/http.h b/lib/http.h
index 72161f6b0..ea1310c39 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -186,6 +186,11 @@ struct HTTP {
size_t push_headers_used; /* number of entries filled in */
size_t push_headers_alloc; /* number of entries allocated */
#endif
+
+#ifdef ENABLE_QUIC
+ /*********** for HTTP/3 we store stream-local data here *************/
+ int64_t stream3_id; /* stream we are interested in */
+#endif
};
#ifdef USE_NGHTTP2