acceptor: don't shutdown the accept process on broken pipe (EPIPE)

This commit is contained in:
draoi
2024-07-30 11:17:34 +02:00
parent b76088fb79
commit 687a1a54ad

View File

@@ -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()",