mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
@ -2,6 +2,7 @@ Version 56:
|
|||||||
|
|
||||||
* Add provisional IANA header field names
|
* Add provisional IANA header field names
|
||||||
* Add string_view_body
|
* 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;
|
ec = error::bad_chunk;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
impl().on_chunk(v, {}, ec);
|
||||||
|
if(ec)
|
||||||
|
return;
|
||||||
len_ = v;
|
len_ = v;
|
||||||
skip_ = 2;
|
skip_ = 2;
|
||||||
p0 = eol;
|
p0 = eol;
|
||||||
|
Reference in New Issue
Block a user