microsandbox-network 0.3.14

Networking types and smoltcp engine for the microsandbox project.
Documentation
1
2
3
4
5
6
7
//! DNS interception via smoltcp UDP socket + async resolution.
//!
//! DNS queries (UDP port 53) flow through smoltcp to a bound UDP socket.
//! The poll loop reads queries, applies domain filters, resolves via the
//! host's DNS resolvers, and sends responses back through the smoltcp socket.

pub mod interceptor;