1 2 3 4 5 6 7 8
use tokio_multi_proxy::start_udp; #[tokio::main] async fn main() -> anyhow::Result<()> { println!("Starting UDP proxy: 0.0.0.0:5353 → 127.0.0.1:8053"); start_udp("0.0.0.0:5353", "127.0.0.1:8053").await }