Good day. I would like to point out an issue about RFC 9204 (QPACK).
Here is a quote from RFC 9204 (QPACK): - An encoder stream is a unidirectional stream of type 0x02. It carries an unframed sequence of encoder instructions from encoder to decoder. - A decoder stream is a unidirectional stream of type 0x03. It carries an unframed sequence of decoder instructions from decoder to encoder. In RFC 9000 (QUIC), we see that stream type 0x02 is only for Unidirectional Client-Initiated streams and 0x03 is for Unidirectional Server-Initiated streams. Based on this information, one can conclude that an encoder stream can only be created by the client and a decoder stream can only be created by the server. However, it contradicts the fact that each peer can open both encoder and decoder streams. Even in practice, we can see servers opening encoder streams on stream #7 and clients opening decoder streams on stream #10. Is there something wrong with the stream types or do I miss something here? Best regards, -Isa