Expand description
smoltcp interface setup, frame classification, and poll loop.
This module contains the core networking event loop that runs on a
dedicated OS thread. It bridges guest ethernet frames (via
SmoltcpDevice) to smoltcp’s TCP/IP stack and services connections
through tokio proxy tasks.
Structs§
- Poll
Loop Config - Resolved network parameters for the poll loop. Created by
SmoltcpNetwork::new()fromNetworkConfig+ sandbox slot.
Enums§
- Frame
Action - Result of classifying a guest ethernet frame before smoltcp processes it.
Functions§
- classify_
frame - Classify a raw ethernet frame for pre-inspection.
- create_
interface - Create and configure the smoltcp
Interface. - smoltcp_
poll_ loop - Main smoltcp poll loop. Runs on a dedicated OS thread.