ABC-011: HIGH HTTP serializer emits zero headers, always

HTTPutf8Feed builds its header slice from the same pointer twice — {http->headers[0], *http->headers} where headers is u8cssp, and a[0] == *a in C — so the header loop is dead code and every serialized message loses all headers (no Host, no Content-Length). Verified empirically by the 2026-07-07 reviewer: a parsed 2-header request re-serialized as "GET / HTTP/1.1rnrn". No test covers the Feed direction.

Input

Context

Goals

Constraints

WIP

Design decisions

TODOs

Blockers and bummers

Outcome