mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 04:47:29 +02:00
@ -2,6 +2,7 @@ Version 56:
|
||||
|
||||
* Add provisional IANA header field names
|
||||
* Add string_view_body
|
||||
* Call on_chunk when the extension is empty
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -567,6 +567,9 @@ parse_chunk_header(char const*& p0,
|
||||
ec = error::bad_chunk;
|
||||
return;
|
||||
}
|
||||
impl().on_chunk(v, {}, ec);
|
||||
if(ec)
|
||||
return;
|
||||
len_ = v;
|
||||
skip_ = 2;
|
||||
p0 = eol;
|
||||
|
Reference in New Issue
Block a user