ntex 2.16.0

Framework for composable network services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! HTTP/2 implementation
mod default;
pub(super) mod payload;
mod service;

pub use ntex_h2::{Config, Control, ControlAck};

#[doc(hidden)]
pub use ntex_h2::{ControlMessage, ControlResult};

pub use self::default::DefaultControlService;
pub use self::payload::Payload;
pub use self::service::H2Service;

pub(in crate::http) use self::service::handle;