add httpraw to readme

This commit is contained in:
soypat
2025-05-25 17:01:31 -03:00
parent ca7bf2f366
commit c3f0c218f7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ Userspace networking primitives.
## Packages
- `lneto`: Low-level Networking Operations, or "El Neto", the networking package. Zero copy network frame marshalling and unmarshalling.
- [`lneto/frames.go`](./frames.go): Ethernet, IPv4/IPv6, ARP, TCP, UDP packet marshalling/unmarshalling.
- [`lneto/http/httpraw`](./http/httpraw/): Heapless HTTP header processing and validation. Does no implement header normalization.
- [`lneto/tcp`](./ntp): TCP implementation and low level logic.
- [`lneto/dhcpv4`](./dhcpv4): DHCP version 4 protocol implementation and low level logic.
- [`lneto/dns`](./dns): DNS protocol implementation and low level logic.
+1 -1
View File
@@ -34,7 +34,7 @@ func (f flags) hasAny(checkThese flags) bool {
//
// It does NOT implement:
// - Normalization.
// - Cookies.
// - Cookies (see [Cookie]).
// - Special header optimizations.
// - Safe API. Users can easily mangle HTTP body with calls.
type Header struct {