xitca_http/h1/
mod.rs

1//! http/1 specific module for types and protocol utilities.
2
3pub mod dispatcher_unreal;
4pub mod proto;
5
6#[cfg(feature = "compio")]
7pub mod dispatcher_compio;
8
9pub(crate) mod dispatcher;
10
11mod body;
12mod builder;
13mod error;
14mod service;
15
16pub use self::body::RequestBody;
17pub use self::error::Error;
18pub use self::service::H1Service;
19
20#[cfg(feature = "io-uring")]
21mod dispatcher_uring;