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
When a Connection: close header is sent with a request, the HTTP server closes the connection BEFORE sending the response and then it fails when trying to respond to the closed connection.
According to RFC 2616 the connection should be closed after the response is sent:
HTTP/1.1 defines the "close" connection option for the sender to
signal that the connection will be closed after completion of the
response. For example,
Connection: close
in either the request or the response header fields indicates that
the connection SHOULD NOT be considered `persistent' (section 8.1)
after the current request/response is complete.
The text was updated successfully, but these errors were encountered:
When a
Connection: close
header is sent with a request, the HTTP server closes the connection BEFORE sending the response and then it fails when trying to respond to the closed connection.According to RFC 2616 the connection should be closed after the response is sent:
The text was updated successfully, but these errors were encountered: