From 0c2be805cd052a55bb87c2671436bb8f1432a36d Mon Sep 17 00:00:00 2001 From: argakiig Date: Tue, 17 Apr 2018 18:23:29 -0400 Subject: [PATCH] Windows Specific Logging Silence Windows Specific Common Errors while bootstrapping --- rai/node/bootstrap.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rai/node/bootstrap.cpp b/rai/node/bootstrap.cpp index 964606c93b..cb0dad7be4 100644 --- a/rai/node/bootstrap.cpp +++ b/rai/node/bootstrap.cpp @@ -257,6 +257,8 @@ void rai::bootstrap_client::run () case boost::system::errc::connection_refused: case boost::system::errc::operation_canceled: case boost::system::errc::timed_out: + case 995: //Windows The I/O operation has been aborted because of either a thread exit or an application request + case 10061: //Windows No connection could be made because the target machine actively refused it break; } }