Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: clippy
  • Loading branch information
Frando committed Nov 20, 2025
commit ff20fa3aa55792de89dbfd53c27894ef9b53c28c
6 changes: 2 additions & 4 deletions iroh/src/magicsock/remote_map/remote_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,10 +386,8 @@ impl RemoteStateActor {
&& self.local_addrs.peek().iter().any(|a| a.addr == *sockaddr)
{
trace!(%sockaddr, "not sending datagram to our own address");
} else {
if let Err(err) = self.send_datagram(addr.clone(), transmit.clone()).await {
debug!(?addr, "failed to send datagram: {err:#}");
}
} else if let Err(err) = self.send_datagram(addr.clone(), transmit.clone()).await {
debug!(?addr, "failed to send datagram: {err:#}");
}
}
// This message is received *before* a connection is added. So we do
Expand Down
Loading