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
It seems many tests are wrong, since use multiple HTTP/1.0 answers without connection: keep-alive
AFAIK, if request was HTTP/1.1 (as in many tests)
HTTP/1.1-aware server should answer with HTTP/1.1 response
not HTTP/1.1-aware(i.e. HTTP/1.0 only) server MUST close connection after serving response
RFC does not document HTTP/1.0 + Connection: keep-alive, but we should consider that HTTP/1.0 server supports Connection: keep-alive.
So, after that, these tests should be changed to use HTTP/1.1 for responses.
I can create PR after approving that.
The text was updated successfully, but these errors were encountered:
socketpair
changed the title
seems many tests are wrong, since use multiple HTTP/1.0 answers without connection: keep-alive
many tests are wrong, since use multiple HTTP/1.0 answers without keep-alive
Jan 25, 2016
It seems many tests are wrong, since use multiple
HTTP/1.0
answers withoutconnection: keep-alive
AFAIK, if request was
HTTP/1.1
(as in many tests)HTTP/1.1
-aware server should answer withHTTP/1.1
responseHTTP/1.1
-aware(i.e.HTTP/1.0
only) server MUST close connection after serving responseHTTP/1.0
+Connection: keep-alive
, but we should consider thatHTTP/1.0
server supportsConnection: keep-alive
.So, after that, these tests should be changed to use
HTTP/1.1
for responses.I can create PR after approving that.
The text was updated successfully, but these errors were encountered: