ttpkit 0.1.0

Generic types for implementing protocols like HTTP, RTSP, SIP, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # Text Transfer Protocol (TTP) toolkit.
//!
//! This crate provides generic types for implementing protocols like HTTP,
//! RTSP, SIP, etc.

pub mod body;
pub mod error;
pub mod header;
pub mod line;
pub mod multipart;
pub mod request;
pub mod response;

pub use ttpkit_utils as utils;

pub use crate::{body::Body, error::Error, request::RequestHeader, response::ResponseHeader};