From: Daniel Stenberg Date: Thu, 30 Jan 2020 15:02:27 +0000 (+0100) Subject: altsvc: use h3-25 X-Git-Tag: curl-7_69_0~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33a77cb528f995ac38ea49c7548dffc8e09b5d9b;p=thirdparty%2Fcurl.git altsvc: use h3-25 Closes #4868 --- diff --git a/lib/altsvc.c b/lib/altsvc.c index bf869c37a5..93204e0121 100644 --- a/lib/altsvc.c +++ b/lib/altsvc.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 2019, Daniel Stenberg, , et al. + * Copyright (C) 2019 - 2020, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -55,7 +55,7 @@ static enum alpnid alpn2alpnid(char *name) if(strcasecompare(name, "h2")) return ALPN_h2; #if (defined(USE_QUICHE) || defined(USE_NGTCP2)) && !defined(UNITTESTS) - if(strcasecompare(name, "h3-24")) + if(strcasecompare(name, "h3-25")) return ALPN_h3; #else if(strcasecompare(name, "h3"))