diff --git a/README.md b/README.md index b14a2e0..6265824 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/http/httpraw/header.go b/http/httpraw/header.go index a174c19..392da47 100644 --- a/http/httpraw/header.go +++ b/http/httpraw/header.go @@ -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 {