diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-05 10:19:48 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-05 14:20:56 +0200 |
commit | 4173868f663c6fe7ecd1ba2abab20381002adc6b (patch) | |
tree | 6d4dc853b2ad0f7b54a5669be2b159fb1c606e61 /lib/http.h | |
parent | 47645f45da29d86865275eacf05b524009902729 (diff) | |
download | curl-4173868f663c6fe7ecd1ba2abab20381002adc6b.tar.gz |
quiche: initial h3 request send/receive
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 5 |
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 |