INNER CODE UNIT · Rust
Some
CluvexStudio/Aether · aether/src/lib.rs:360
if let Some(peer) = outer_peer.take() {
log::warn!(
"[-] outer endpoint {peer} failed {consecutive_fails} times in a row; blacklisting and rescanning"
);
rescanning = true;
}
}
if pinned.inner.is_none() {
if let Some(peer) = inner_peer.take() {
log::warn!(
"[-] inner endpoint {peer} failed {consecutive_fails} times in a row; blacklisting and rescanning"
);
rescanning = true;
}
}
if !rescanning {