aboutsummaryrefslogtreecommitdiff
path: root/lib/http.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-08-08 23:13:57 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-08-09 12:26:02 +0200
commitdb061571ef4b7a925da1c189b60c08b39e6b2dbf (patch)
treea709e439ac1ef0ace78663a8ea4724d84c329a8a /lib/http.h
parent4570c22c579cdfb293d890f034c7c4926967790e (diff)
http3: make connection reuse work
Closes #4204
Diffstat (limited to 'lib/http.h')
-rw-r--r--lib/http.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/http.h b/lib/http.h
index f6f5d4fd5..c27725d2a 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -193,6 +193,7 @@ struct HTTP {
/*********** for HTTP/3 we store stream-local data here *************/
int64_t stream3_id; /* stream we are interested in */
bool firstbody; /* FALSE until body arrives */
+ bool h3req; /* FALSE until request is issued */
#endif
};