0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

ircd: Remove the close+wait after exiting client::main().

This commit is contained in:
Jason Volk 2018-01-08 03:05:46 -08:00
parent 8bfd2b9dfe
commit b507262582

View file

@ -257,8 +257,6 @@ ircd::async_recv_next(std::shared_ptr<client> client,
// the next request. // the next request.
if(client->main()) if(client->main())
async_recv_next(std::move(client), timeout); async_recv_next(std::move(client), timeout);
else
close(*client).wait();
}); });
}); });
} }