aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2021-02-19 17:27:41 +0300
committerSergey Kandaurov <pluknet@nginx.com>2021-02-19 17:27:41 +0300
commitd72221b8260d563f8b96ecc9c541f40cd3a5ee0f (patch)
tree819107855d09438c76a66665a3be33434247d24f
parentbe98da0731a1c9cf24088d0b8f9a2137f3b91cfa (diff)
downloadnginx-d72221b8260d563f8b96ecc9c541f40cd3a5ee0f.tar.gz
nginx-d72221b8260d563f8b96ecc9c541f40cd3a5ee0f.zip
Updated the list of supported drafts.
-rw-r--r--README5
-rw-r--r--src/event/quic/ngx_event_quic.h1
2 files changed, 1 insertions, 5 deletions
diff --git a/README b/README
index 5733c75ca..ddaceb4b8 100644
--- a/README
+++ b/README
@@ -34,12 +34,9 @@ Experimental QUIC support for nginx
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.
diff --git a/src/event/quic/ngx_event_quic.h b/src/event/quic/ngx_event_quic.h
index c66f6ceab..be0eec699 100644
--- 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