diff --git a/src/transport/udp/connected_peer.rs b/src/transport/udp/connected_peer.rs index 83acbd3..4830978 100644 --- a/src/transport/udp/connected_peer.rs +++ b/src/transport/udp/connected_peer.rs @@ -1,8 +1,3 @@ -// The connected-UDP fast path is infra-ready but not yet wired into the -// encrypt-worker dispatch site (a follow-up PR will refcount-clone the -// socket into each FmpSendJob). Keep the API surface in tree. -#![allow(dead_code)] - //! Connected per-peer UDP socket. //! //! One of the levers boringtun uses to hit 2.5–3.2 Gbps on a real diff --git a/src/transport/udp/peer_drain.rs b/src/transport/udp/peer_drain.rs index 5e12442..3311e33 100644 --- a/src/transport/udp/peer_drain.rs +++ b/src/transport/udp/peer_drain.rs @@ -1,7 +1,3 @@ -// Paired with `connected_peer.rs`: dormant in this PR until the -// activation handler is wired into the node tick (follow-up). -#![allow(dead_code)] - //! Recv-side drain thread for a per-peer connected UDP socket. //! //! Once a UDP socket is `connect()`-ed to a peer, Linux and Darwin