mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +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 missing check for error code after header is parsed.
|
||||||
* Fix case where inflated content is larger than the out buffer.
|
* Fix case where inflated content is larger than the out buffer.
|
||||||
|
|
||||||
|
@@ -645,7 +645,7 @@ public:
|
|||||||
BOOST_THROW_EXCEPTION(
|
BOOST_THROW_EXCEPTION(
|
||||||
system_error{ec});
|
system_error{ec});
|
||||||
BEAST_EXPECT(n == s.size());
|
BEAST_EXPECT(n == s.size());
|
||||||
BEAST_EXPECT(++count == 1);
|
++count;
|
||||||
});
|
});
|
||||||
ws.async_ping({},
|
ws.async_ping({},
|
||||||
[&](error_code ec)
|
[&](error_code ec)
|
||||||
|
Reference in New Issue
Block a user