http3: make connection reuse work

Closes #4204
This commit is contained in:
Daniel Stenberg 2019-08-08 23:13:57 +02:00
parent 4570c22c57
commit db061571ef
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
6 changed files with 87 additions and 47 deletions

View file

@ -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
};