1// SPDX-License-Identifier: MIT
2// Copyright (c) 2025 Gavin Henry <ghenry@sentrypeer.org>
34//! tokio-dstip: Get a packet's destination IP address whilst using Tokio on Linux and macOS
56pub mod tcp;
7pub mod udp;
89pub use tcp::TcpListenerWithDst;
10pub use udp::UdpSocketWithDst;