microsandbox_network/dns/mod.rs
1//! DNS interception via smoltcp UDP socket + async resolution.
2//!
3//! DNS queries (UDP port 53) flow through smoltcp to a bound UDP socket.
4//! The poll loop reads queries, applies domain filters, resolves via the
5//! host's DNS resolvers, and sends responses back through the smoltcp socket.
6
7pub mod interceptor;