From c3f0c218f753d7d4f0e254fdea0675b175e55f99 Mon Sep 17 00:00:00 2001 From: soypat Date: Sun, 25 May 2025 17:01:31 -0300 Subject: [PATCH] add httpraw to readme --- README.md | 2 +- http/httpraw/header.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {