Squelch harmless not_connected errors

This commit is contained in:
Vinnie Falco
2017-06-19 19:42:06 -07:00
parent 5613ce7e97
commit f4c65a5ba6
8 changed files with 22 additions and 12 deletions

View File

@@ -177,9 +177,10 @@ private:
socket_type::shutdown_both,
ec);
// Report failure if any
// not_connected happens under normal
// circumstances so don't bother reporting it.
//
if(ec)
if(ec && ec != beast::errc::not_connected)
return this->fail("shutdown", ec);
}
};