A Request Is Parsed Text
Before any header semantics or routing, what shape does raw HTTP text have to match, and what breaks that shape?
Open Session 01Protocol in Code · Track
parsing, pooling, and multiplexing as stateful logic
Sessions
Before any header semantics or routing, what shape does raw HTTP text have to match, and what breaks that shape?
Open Session 01Once a request is parsed into a flat list of name/value pairs, what turns that list into "valid" or "invalid," and who decides?
Open Session 02When a client wants a connection to a host, how does it decide between reusing something idle and opening something new — and what makes an idle connection stop being reusable?
Open Session 03Given a response's caching directives, three separate questions have to be answered in order: should this be stored at all, can a stored copy be reused right now, and if not, does revalidation confirm nothing changed?
Open Session 04Following a redirect chain is a loop with no natural stopping point — what two mechanisms turn it into something that is guaranteed to terminate, and what determines whether a POST survives the trip?
Chunked transfer encoding is a stream of alternating size-lines and data — what single field tracks where the parser is in that alternation, and what makes an error state permanent once entered?
Open Session 06An HTTP/2 connection multiplexes many independent request/response streams over one transport — what proves each stream's state is tracked separately, and what makes the very first frame on a stream special?
Open Session 07TCP has one sequence space per connection, so a gap anywhere stalls everything behind it. QUIC gives every stream its own offset space — so what, mechanically, keeps one stream's gap from ever touching another stream's delivery?
Open Session 08QUIC enforces flow control at two levels at once — per stream and per connection. What decides whether a send goes through, and what exactly happens to each level's balance when the answer is no?
Open Session 09A server doesn't parse a request in isolation, or check headers in isolation, or answer from cache in isolation — it does all three, in order, once per request, for as many requests as one connection carries. What is the exact loop that wires those three earlier sessions together, and what makes it stop?
Open Session 10