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
Response.StatusCode 204, 304 or Request.Method HEAD
---- passthrough
(Software MUST NOT write a body)
Software has set "Transfer-Encoding" ending with "chunked"
---- passthrough
Server transmits Transfer-Encoding header unmodified
Server transmits Response.Body bytes unmodified
(Software MUST write well-formed chunk delimiting)
Software has set "Transfer-Encoding" not ending with "chunked"
---- server-chunking
Server transmits "Transfer-Encoding" header with "chunked" appended
Server transmits Response.Body bytes with chunked delimiting
Software has set "Content-Length"
---- passthrough
Server transmits "Content-Length" header unmodified
Server transmits Response.Body bytes unmodified
(Software MUST write exactly that many bytes)
Software has set "Connection" to "closed"
---- passthrough (+close)
Server transmits "Connection" header unmodified
Server transmits Response.Body bytes unmodified
Server MUST close socket after response
Software has done none of the above
When the pipeline Task is still running
---- server-chunking
Server transmits "Transfer-Encoding" header with "chunked"
Server transmits Response.Body bytes with chunked delimiting
When the pipeline Task is complete
---- passthrough
Server transmits Content-Length header
Server transmits Response.Body bytes unmodified