You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2026. It is now read-only.
It seems many tests are wrong, since use multiple
HTTP/1.0answers withoutconnection: keep-aliveAFAIK, if request was
HTTP/1.1(as in many tests)HTTP/1.1-aware server should answer withHTTP/1.1responseHTTP/1.1-aware(i.e.HTTP/1.0only) server MUST close connection after serving responseHTTP/1.0+Connection: keep-alive, but we should consider thatHTTP/1.0server supportsConnection: keep-alive.So, after that, these tests should be changed to use
HTTP/1.1for responses.I can create PR after approving that.