1//! TCP Fast Open (TFO) in Rust for [tokio](https://crates.io/crates/tokio) 2 3mod sys; 4 5pub mod listener; 6pub mod stream; 7 8pub use self::{listener::TfoListener, stream::TfoStream};