*
* DO NOT test these pointers (sstream, rstream) for NULL. Determine the
* state of the send or receive stream part first using the appropriate
- * function; then the invariant of that state guarantees that sstream or
- * rstream either is or is not NULL respectively, therefore there is no
- * valid use case for testing these pointers for NULL. In particular, a
- * stream with a send part can still have sstream as NULL, and a stream with
- * a receive part can still have rstream as NULL. QUIC_SSTREAM and
- * QUIC_RSTREAM are stream buffer resource management objects which exist
- * only when they need to for buffer management purposes. The existence or
- * non-existence of a QUIC_SSTREAM or QUIC_RSTREAM object does not
- * correspond with whether a stream's respective send or receive part
- * logically exists or not.
+ * function (ossl_quic_stream_has_send_buffer() resp.
+ * ossl_quic_stream_has_recv_buffer() ; then the invariant of that state
+ * guarantees that sstream or rstream either is or is not NULL respectively,
+ * therefore there is no valid use case for testing these pointers for NULL.
+ * In particular, stream with a send part can still have sstream as NULL,
+ * and a stream with a receive part can still have rstream as NULL.
+ * QUIC_SSTREAM and QUIC_RSTREAM are stream buffer resource management
+ * objects which exist only when they need to for buffer management
+ * purposes. The existence or non-existence of a QUIC_SSTREAM or
+ * QUIC_RSTREAM object does not correspond with whether a stream's
+ * respective send or receive part logically exists or not.
*/
QUIC_SSTREAM *sstream; /* NULL if RX-only */
QUIC_RSTREAM *rstream; /* NULL if TX only */