mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
committed by
Richard Hodges
parent
5cc73b944c
commit
2f4506dc37
@ -1,5 +1,6 @@
|
|||||||
Version XXX:
|
Version XXX:
|
||||||
|
|
||||||
|
* Fix accept error handling in http_server_async example.
|
||||||
* Move library-specific docca configuration to Beast.
|
* Move library-specific docca configuration to Beast.
|
||||||
* Remove dependency on RTTI in `test::stream`.
|
* Remove dependency on RTTI in `test::stream`.
|
||||||
|
|
||||||
|
@ -500,6 +500,7 @@ private:
|
|||||||
if(ec)
|
if(ec)
|
||||||
{
|
{
|
||||||
fail(ec, "accept");
|
fail(ec, "accept");
|
||||||
|
return; // To avoid infinite loop
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -434,6 +434,7 @@ private:
|
|||||||
if(ec)
|
if(ec)
|
||||||
{
|
{
|
||||||
fail(ec, "accept");
|
fail(ec, "accept");
|
||||||
|
return; // To avoid infinite loop
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user