xitca-http 0.2.1

http library for xitca
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! http/2 specific module for types and protocol utilities.

mod builder;
mod error;
mod proto;
mod service;

pub mod body;

pub(crate) use self::proto::Dispatcher;

pub use self::body::RequestBody;
pub use self::error::Error;
pub use self::service::H2Service;

#[cfg(feature = "io-uring")]
pub use self::proto::{run, RequestBody as RequestBodyV2, RequestBodySender};