Crates.io | hreq-h1 |
lib.rs | hreq-h1 |
version | 0.3.10 |
source | src |
created_at | 2020-07-31 13:06:26.820746 |
updated_at | 2021-04-18 19:22:58.578848 |
description | Asynchronous HTTP/1.1 (and 1.0) implementation |
homepage | |
repository | https://github.com/algesten/hreq-h1 |
max_upload_size | |
id | 271632 |
size | 193,716 |
An asynchronous HTTP/1 server and client implemenation.
This library provides the lower level parts of the HTTP/1.1 (and 1.0) spec. Specifically it concerns sending/receiving http requests and bodies over some unnamed transport. Which async runtime to use, TCP and TLS are handled outside this library.
Since HTTP/1.1 has no multiplexing, the HTTP headers Content-Length
and
Transfer-Encoding
are handled/enforced by this library to be able to correctly
delinate where a request starts/ends over the transport.
Content-Length
for known body sizes and ensuring the body size is correct.Transfer-Encoding: chunked
when body size not known.Connection: keep-alive
or close
to handle HTTP/1.0 response delineation.Basically everything which isn't about HTTP as "transport", i.e. application level logic.
Content-Type
characters sets, mime types.Content-Encoding
compression, gzip.Expect: 100-Continue
The API tries to closely follow that of h2 so that a user of the library can make uniform handling of both HTTP/1.1 and HTTP/2.0.
There are separate client and server modules and code that is shared between them lives in the crate root.
Some connection must already have been established between client and server, this library does not perform socket connection.
In HTTP/1.1 there is no "handshake" like in HTTP/2.0, but
to be congruent with h2, the entry points for starting a connection are client::handshake
and server::handshake
.