mirror of
https://github.com/matrix-construct/construct
synced 2024-11-19 00:10:59 +01:00
ircd::net: Improve some error handling and log message related.
This commit is contained in:
parent
37308b1672
commit
29d9f2bfdb
1 changed files with 21 additions and 2 deletions
23
ircd/net.cc
23
ircd/net.cc
|
@ -636,7 +636,7 @@ ircd::net::socket::socket(const ip::tcp::endpoint &remote,
|
|||
try
|
||||
:socket{ssl, ios}
|
||||
{
|
||||
log::debug("socket(%p) connecting to remote: %s timeout: %ld$ms",
|
||||
log::debug("socket(%p) attempting connect to remote: %s for the next %ld$ms",
|
||||
this,
|
||||
string(remote),
|
||||
timeout.count());
|
||||
|
@ -678,8 +678,21 @@ ircd::net::socket::socket(asio::ssl::context &ssl,
|
|||
}
|
||||
|
||||
ircd::net::socket::~socket()
|
||||
noexcept
|
||||
noexcept try
|
||||
{
|
||||
if(ctx::current) try
|
||||
{
|
||||
disconnect(dc::SSL_NOTIFY_YIELD);
|
||||
}
|
||||
catch(const boost::system::system_error &e)
|
||||
{
|
||||
log::debug("socket(%p): close: %s", this, e.what());
|
||||
}
|
||||
}
|
||||
catch(const std::exception &e)
|
||||
{
|
||||
log::error("socket(%p): close: %s", this, e.what());
|
||||
return;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -697,6 +710,12 @@ ircd::net::socket::disconnect(const dc &type)
|
|||
if(timer.expires_from_now() > 0ms)
|
||||
timer.cancel();
|
||||
|
||||
if(sd.is_open())
|
||||
log::debug("socket(%p): disconnect: %s type: %d",
|
||||
this,
|
||||
string(remote()),
|
||||
uint(type));
|
||||
|
||||
if(sd.is_open()) switch(type)
|
||||
{
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue