Skip to main content

Module stack

Module stack 

Source
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§

PollLoopConfig
Resolved network parameters for the poll loop. Created by SmoltcpNetwork::new() from NetworkConfig + sandbox slot.

Enums§

FrameAction
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.