#if defined(USE_NGHTTP2) || defined(USE_NGHTTP3)
bool bodystarted;
int status_code; /* HTTP status code */
- bool closed; /* TRUE on HTTP2 stream close */
char *mem; /* points to a buffer in memory to store received data */
size_t len; /* size of the buffer 'mem' points to */
size_t memlen; /* size of data copied to mem */
const uint8_t *upload_mem; /* points to a buffer to read from */
size_t upload_len; /* size of the buffer 'upload_mem' points to */
curl_off_t upload_left; /* number of bytes left to upload */
+ bool closed; /* TRUE on HTTP2 stream close */
#endif
#ifdef ENABLE_QUIC
ssize_t recvd = -1;
ssize_t rcode;
quiche_h3_event *ev;
- struct h3h1header headers;
struct HTTP *stream = data->req.p.http;
- headers.dest = buf;
- headers.destlen = len;
- headers.nlen = 0;
CF_DEBUGF(infof(data, CFMSG(cf, "recv[%u]"), stream->stream3_id));