Skip to main content

io_http/rfc1945/
mod.rs

1//! HTTP/1.0 message syntax ([RFC 1945]).
2//!
3//! I/O-free coroutines implementing the HTTP/1.0 wire protocol: no sockets, no
4//! async runtime, no `std`. Shared types live in [`crate::rfc9110`].
5//!
6//! Differences from HTTP/1.1 ([`crate::rfc9112`]):
7//!
8//! - No chunked transfer encoding (`Transfer-Encoding` is undefined).
9//! - Connections close after each request by default.
10//! - `Host` header is not mandatory.
11//!
12//! [RFC 1945]: https://www.rfc-editor.org/rfc/rfc1945
13
14pub mod request;
15pub mod send;
16pub mod version;