diff --git a/src/net/acceptor.rs b/src/net/acceptor.rs index c45424c99..351f22437 100644 --- a/src/net/acceptor.rs +++ b/src/net/acceptor.rs @@ -157,6 +157,13 @@ impl Acceptor { ); continue } + libc::ETIMEDOUT => { + warn!( + target: "net::acceptor::run_accept_loop()", + "[P2P] Connection timed out in accept_loop" + ); + continue + } x => { error!( target: "net::acceptor::run_accept_loop()",