diff src/event/quic/ngx_event_quic_streams.c @ 8797:4715f3e669f1 quic

QUIC: updated specification references. This includes updating citations and further clarification.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 16 Jun 2021 11:55:12 +0300
parents af33d1ef1c3c
children 4009f120cad4
line wrap: on
line diff
--- a/src/event/quic/ngx_event_quic_streams.c
+++ b/src/event/quic/ngx_event_quic_streams.c
@@ -296,12 +296,11 @@ ngx_quic_create_client_stream(ngx_connec
     }
 
     /*
-     *   2.1.  Stream Types and Identifiers
+     * RFC 9000, 2.1.  Stream Types and Identifiers
      *
-     *   Within each type, streams are created with numerically increasing
-     *   stream IDs.  A stream ID that is used out of order results in all
-     *   streams of that type with lower-numbered stream IDs also being
-     *   opened.
+     * successive streams of each type are created with numerically increasing
+     * stream IDs.  A stream ID that is used out of order results in all
+     * streams of that type with lower-numbered stream IDs also being opened.
      */
 
     for ( /* void */ ; min_id < id; min_id += 0x04) {