Skip to content

Commit

Permalink
fix udp issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lazytiger committed Nov 21, 2024
1 parent 140a9e0 commit 0e9e1b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/aproxy/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,12 @@ pub async fn run_udp(
connector_clone,
request_clone,
src_addr,
sender_clone,
sender_clone.clone(),
)
.await
{
log::error!("udp local to remote failed:{:?}", err);
let _ = sender_clone.send(src_addr).await;
}
});
remotes.get(&src_addr).unwrap()
Expand Down

0 comments on commit 0e9e1b0

Please sign in to comment.