]> granicus.if.org Git - curl/commitdiff
altsvc: both backends run h3-23 now
authorDaniel Stenberg <daniel@haxx.se>
Sat, 21 Sep 2019 13:46:30 +0000 (15:46 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 21 Sep 2019 21:11:29 +0000 (23:11 +0200)
Closes #4395

docs/HTTP3.md
lib/altsvc.c

index faa556441de13907f1ae104f00410e7b4f923dd3..66de7b3dea6e9afa2495de090bef46f9bca6733d 100644 (file)
@@ -33,7 +33,7 @@ in the master branch using pull-requests, just like ordinary changes.
 
 Build (patched) OpenSSL
 
-     % git clone --depth 1 -b openssl-quic-draft-22 https://github.com/tatsuhiro-t/openssl
+     % git clone --depth 1 -b openssl-quic-draft-23 https://github.com/tatsuhiro-t/openssl
      % cd openssl
      % ./config enable-tls1_3 --prefix=<somewhere1>
      % make
@@ -52,7 +52,7 @@ Build nghttp3
 Build ngtcp2
 
      % cd ..
-     % git clone -b draft-22 https://github.com/ngtcp2/ngtcp2
+     % git clone https://github.com/ngtcp2/ngtcp2
      % cd ngtcp2
      % autoreconf -i
      % ./configure PKG_CONFIG_PATH=<somewhere1>/lib/pkgconfig:<somewhere2>/lib/pkgconfig LDFLAGS="-Wl,-rpath,<somehere1>/lib" --prefix==<somewhere3>
index a649fefd80e41c6e0a6a8bf88a1b173d4bd65dc4..ecf6f394654b7f6f37a6d69f2fc108471a792c6d 100644 (file)
@@ -55,7 +55,7 @@ static enum alpnid alpn2alpnid(char *name)
   if(strcasecompare(name, "h2"))
     return ALPN_h2;
 #if (defined(USE_QUICHE) || defined(USE_NGHTTP2)) && !defined(UNITTESTS)
-  if(strcasecompare(name, "h3-22"))
+  if(strcasecompare(name, "h3-23"))
     return ALPN_h3;
 #else
   if(strcasecompare(name, "h3"))