mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Fix incorrect websocket test ordering
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
* Fix incorrect websocket test ordering.
|
||||
* Fix missing check for error code after header is parsed.
|
||||
* Fix case where inflated content is larger than the out buffer.
|
||||
|
||||
|
@ -645,7 +645,7 @@ public:
|
||||
BOOST_THROW_EXCEPTION(
|
||||
system_error{ec});
|
||||
BEAST_EXPECT(n == s.size());
|
||||
BEAST_EXPECT(++count == 1);
|
||||
++count;
|
||||
});
|
||||
ws.async_ping({},
|
||||
[&](error_code ec)
|
||||
|
Reference in New Issue
Block a user