-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Client sends request headers to the server (h1/h2/h3) ->
url,headers, whether abodyis present, andreq.connection - Client can send a body (optional) (h1/h2/h3)
- h1 either streaming (transfer-encoding: chunked) or fixed size (content-length)
- h2/h3 are always streaming, but could have a size indication (content-length)
- Server could respond with client hints before the real response (How to send early hints #4)
- Server could respond with status code + headers (even before the full client body is at the server, or even has been sent), additionally specify which trailer "headers" you want respond with (Trailer support in the API whatwg/fetch#981)
- Server can respond with a body or upgrading the connection to a different protocol (which would have to be advertised through
upgradeheader). - Server is done sending the response body or the upgraded connection closes.
- Respond with trailers that you advertised
1 must happen before 3 and 4, and 6 stops 2.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels