mirror of
https://github.com/boostorg/beast.git
synced 2026-02-03 22:06:16 +01:00
Always go through write_some:
HTTP stream serialization algorithms always go through write_some or async_write some.
This commit is contained in:
@@ -811,8 +811,16 @@ public:
|
||||
|
||||
void run() override
|
||||
{
|
||||
yield_to([&](yield_context yield){ testAsyncWrite(yield); });
|
||||
yield_to([&](yield_context yield){ testFailures(yield); });
|
||||
yield_to(
|
||||
[&](yield_context yield)
|
||||
{
|
||||
testAsyncWrite(yield);
|
||||
});
|
||||
yield_to(
|
||||
[&](yield_context yield)
|
||||
{
|
||||
testFailures(yield);
|
||||
});
|
||||
testOutput();
|
||||
test_std_ostream();
|
||||
testIoService();
|
||||
|
||||
Reference in New Issue
Block a user