1
Fork 0
hare-http/net/http
Drew DeVault 047472da93 Implement new_chunked_reader
TODO: Implement chunked_read too
2023-02-12 13:23:32 +01:00
..
client.ha Merge _set_content_length into new_request_body 2023-02-12 13:14:19 +01:00
constants.ha net::http: add status code utilities 2023-02-11 11:16:15 +01:00
do.ha Plumb transport config through to [[do]] 2023-02-12 13:07:05 +01:00
error.ha error: correct doc reference 2023-02-12 13:19:00 +01:00
header.ha Improve support riggings for Transfer-Encoding 2023-02-12 11:04:05 +01:00
README Lil' more README 2023-02-12 13:13:09 +01:00
request.ha Improve documentation and transport semantics 2023-02-12 13:05:11 +01:00
response.ha Rig out transport handling, finish identity reader 2023-02-11 11:31:07 +01:00
server.ha Initial commit 2023-02-09 11:45:25 +01:00
status.ha net::http: add status code utilities 2023-02-11 11:16:15 +01:00
transport.ha Implement new_chunked_reader 2023-02-12 13:23:32 +01:00

net::http provides an implementation of an HTTP 1.1 client and server as defined
by RFC 7230 et al.

TODO: Flesh me out

Caveats:

- No attempt is made to validate that the input for client requests or responses
  are valid according to the HTTP grammar; such cases will fail when rejected by
  the other party.
- Details indicated by RFC 7230 et al as "obsolete" are not implemented
- Max header length including "name: value" is 4KiB

TODO:

- Server stuff
- TLS