|
|
|
|
|
by toast0
2663 days ago
|
|
I think this because I've seen the pcap traces. The server closed the connection before it received the 2nd request -- it can't possibly send a status code. See my timeline in a sibling comment. The Keep-Alive header [1] is optional, but has parameters timeout, indicating the idle timeout, and max, indicating the number of allowed requests. Max is useful for pipelining, to avoid sending requests that won't be processed; timeout is very helpful for avoiding sending requests when the server is about to close the socket. [1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Ke...
The Connection response header is specificed to have two optional parameters, timeout, and max. timeout |
|
For the keep-alive header, you are right, I wasn't aware of it.