@@ -194,6 +194,13 @@ impl Acceptor {
);
continue
}
+ libc::EPIPE => {
+ warn!(
+ target: "net::acceptor::run_accept_loop()",
+ "[P2P] Broken pipe in accept_loop"
+ );
+ continue
+ }
x => {
error!(
target: "net::acceptor::run_accept_loop()",