Skip to content

Commit

Permalink
Add break to ensure we don't actually use XDP yet
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Jan 20, 2025
1 parent faa5878 commit 0951402
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ impl Proxy {
use crate::net::xdp;
use eyre::Context as _;

// TODO: remove this once it's been more stabilized
if true {
break 'xdp;
}

let Some(external_port) = self.socket.as_ref().and_then(|s| {
s.local_addr()
.ok()
Expand Down

0 comments on commit 0951402

Please sign in to comment.