diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2021-03-16 13:48:28 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-03-16 13:48:28 +0300 |
commit | 780de6de44b066a253a455a061efb09ff8060d09 (patch) | |
tree | 6c04fbf6793e1b1f4a291e9c188925ff14e76db3 /src | |
parent | 6a0bea5361d0edfa69fce916739b8b1b96c7fb4f (diff) | |
download | nginx-780de6de44b066a253a455a061efb09ff8060d09.tar.gz nginx-780de6de44b066a253a455a061efb09ff8060d09.zip |
QUIC: fixed hq ALPN id for the final draft.
It was an agreement to use "hq-interop"[1] for interoperability testing.
[1] https://github.com/quicwg/base-drafts/wiki/ALPN-IDs-used-with-QUIC
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_quic_module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_quic_module.h b/src/http/modules/ngx_http_quic_module.h index bc75dd501..21d4a40a1 100644 --- a/src/http/modules/ngx_http_quic_module.h +++ b/src/http/modules/ngx_http_quic_module.h @@ -14,7 +14,7 @@ #include <ngx_http.h> -#define NGX_HTTP_QUIC_ALPN_ADVERTISE "\x02hq" +#define NGX_HTTP_QUIC_ALPN_ADVERTISE "\x0Ahq-interop" #define NGX_HTTP_QUIC_ALPN_DRAFT_FMT "\x05hq-%02uD" |