changeset 8711:12df02cc709f quic

Updated the list of supported drafts.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 19 Feb 2021 17:27:41 +0300
parents 44b4c6180106
children 6da4b045ec34
files README src/event/quic/ngx_event_quic.h
diffstat 2 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/README
+++ b/README
@@ -34,12 +34,9 @@ 1. Introduction
 
     What works now:
 
-    Currently we support IETF-QUIC draft-27 through draft-32.
+    Currently we support IETF-QUIC draft-29 through draft-34.
     Earlier drafts are NOT supported as they have incompatible wire format.
 
-    You may look at src/event/ngx_event_quic.h for alternative values of the
-    NGX_QUIC_DRAFT_VERSION macro used to select IETF draft version number.
-
     nginx should be able to respond to HTTP/3 requests over QUIC and
     it should be possible to upload and download big files without errors.
 
--- a/src/event/quic/ngx_event_quic.h
+++ b/src/event/quic/ngx_event_quic.h
@@ -12,7 +12,6 @@
 #include <ngx_core.h>
 
 
-/* Supported drafts: 27, 28, 29 */
 #ifndef NGX_QUIC_DRAFT_VERSION
 #define NGX_QUIC_DRAFT_VERSION               29
 #endif