mirror of
https://github.com/curl/curl.git
synced 2026-07-27 23:33:08 +03:00
parent
32d64b2e87
commit
0a5d28fa2e
5 changed files with 153 additions and 19 deletions
|
|
@ -126,6 +126,10 @@ CURLcode Curl_http_auth_act(struct connectdata *conn);
|
|||
|
||||
#endif /* CURL_DISABLE_HTTP */
|
||||
|
||||
#ifdef USE_NGHTTP3
|
||||
struct h3out; /* see ngtcp2 */
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* HTTP unique setup
|
||||
***************************************************************************/
|
||||
|
|
@ -196,6 +200,10 @@ struct HTTP {
|
|||
int64_t stream3_id; /* stream we are interested in */
|
||||
bool firstbody; /* FALSE until body arrives */
|
||||
bool h3req; /* FALSE until request is issued */
|
||||
bool upload_done;
|
||||
#endif
|
||||
#ifdef USE_NGHTTP3
|
||||
struct h3out *h3out; /* per-stream buffers for upload */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue