Avoid O(n) iteration when sending TCP packets

This commit is contained in:
Ruihan Li
2025-03-18 09:34:15 +08:00
committed by Tate, Hongliang Tian
parent 58ad43b0a9
commit a7e718e812
8 changed files with 476 additions and 185 deletions

View File

@ -5,6 +5,7 @@ mod common;
mod iface;
mod phy;
mod poll;
mod poll_iface;
mod port;
mod sched;
mod time;
@ -12,5 +13,6 @@ mod time;
pub use common::BoundPort;
pub use iface::Iface;
pub use phy::{EtherIface, IpIface};
pub(crate) use poll_iface::{PollKey, PollableIfaceMut};
pub use port::BindPortConfig;
pub use sched::ScheduleNextPoll;