diff options
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http.h b/lib/http.h index 67426d2b0..e8014409b 100644 --- a/lib/http.h +++ b/lib/http.h @@ -163,8 +163,8 @@ struct HTTP { size_t nread_header_recvbuf; /* number of bytes in header_recvbuf fed into upper layer */ int status_code; /* HTTP status code */ - const uint8_t *data; /* pointer to data chunk, received in on_data_chunk */ - size_t datalen; /* the number of bytes left in data */ + const uint8_t *pausedata; /* pointer to data received in on_data_chunk */ + size_t pauselen; /* the number of bytes left in data */ bool closed; /* TRUE on HTTP2 stream close */ uint32_t error_code; /* HTTP/2 error code */ |