Skip to main content

fips_core/upper/
mod.rs

1//! IPv6 Upper Layer Adaptation
2//!
3//! This module groups the components that bridge between the FIPS routing
4//! layer and IPv6 applications: the TUN interface (packet I/O), DNS
5//! responder (.fips domain resolution), and ICMPv6 handling (error
6//! signaling and neighbor discovery).
7
8pub mod config;
9pub mod dns;
10pub mod hosts;
11pub mod icmp;
12pub mod icmp_rate_limit;
13pub mod ipv6_shim;
14pub mod tcp_mss;
15pub mod tun;