Mark Nottingham

Results 399 comments of Mark Nottingham

It's also supported by Akamai and other CDNs. That is *not* one of my favourite specs (sorry), but it does see deployment. I'm half-tempted to write an updated spec and...

Thanks for writing node_pcap -- it's amazingly useful. I looked at using Python, but node + node_pcap made it SO easy -- and I think others are coming to the...

I think there are a few different scenarios, potentially - 1) Getting a Connection: close without any Transfer-Encoding or Content-Length 2) Getting a Content-Length, but having the close happen before...

FWIW, corresponding HTTP spec is `field-value`: http://httpwg.org/specs/rfc7230.html#header.fields `VCHAR` gets you 0x21-7E, `field-content` adds in 0x20 and 0x09, and `obs-text` gets you 0x80-FF. `obs-fold` gets you 0x0A and 0x0D in certain...

good start

That'd be good -- I'm curious to see how that works :)

This seems like it's out of scope for 6265bis; it wasn't in the list of proposals we accepted, and isn't a low-level interop / clarification issue. I'd suggest we punt...

Anne, if a 103 response had both a `preload` Link header and a `Content-Security-Policy` header, would you think that workable?

Another approach would be to return `201 Created` along with a `Location` header. To my eye, that more clearly communicates that the URL is pointing at a new resource for...

I went to start a PR for this, but saw that the spec already includes an example that uses `303 (See Other)` for this pattern. That avoids the counterintuitive aspect...