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
- If `Transfer-Encoding: chunked` is not supported, reject such requests (treat as `ZI_E_INVALID`).
112
+
- If `Transfer-Encoding: chunked` is supported, the runtime MUST decode the chunked framing and expose the decoded bytes as a request body `STREAM` (i.e., `body_kind=2`).
112
113
- Close the connection after completing a response, unless keep-alive is explicitly supported.
113
114
115
+
Notes (reference runtime behavior):
116
+
- Server-side incoming requests with `Transfer-Encoding: chunked` are supported and are exposed as `body_kind=STREAM`.
117
+
- Multipart (Option A) advertisement is conservative; runtimes MAY choose not to advertise `MULTIPART` for chunked bodies.
118
+
- Client-side `FETCH` supports `Transfer-Encoding: chunked` responses by decoding and exposing the decoded bytes as `body_kind=STREAM`.
0 commit comments