diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-11 15:10:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-18 09:33:47 +0200 |
commit | 522ca8c035e487801253f0349906160515389f7e (patch) | |
tree | 8d980d2721f92e75150dcd4d8a5a6a8b14a55a16 /lib/http.h | |
parent | a66ed407d2ba40d95d1a68603b20bcd3bf036802 (diff) | |
download | curl-522ca8c035e487801253f0349906160515389f7e.tar.gz |
http2: rename s/data/pausedata
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 */ |