From: Daniel Stenberg Date: Mon, 12 Aug 2019 10:19:59 +0000 (+0200) Subject: altsvc: make it use h3-22 with ngtcp2 as well X-Git-Tag: curl-7_66_0~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49e6b3857fb65d93b40ff6591b57d855586a8d99;p=curl altsvc: make it use h3-22 with ngtcp2 as well --- diff --git a/lib/altsvc.c b/lib/altsvc.c index abea66c69..a649fefd8 100644 --- a/lib/altsvc.c +++ b/lib/altsvc.c @@ -54,7 +54,7 @@ static enum alpnid alpn2alpnid(char *name) return ALPN_h1; if(strcasecompare(name, "h2")) return ALPN_h2; -#if defined(USE_QUICHE) && !defined(UNITTESTS) +#if (defined(USE_QUICHE) || defined(USE_NGHTTP2)) && !defined(UNITTESTS) if(strcasecompare(name, "h3-22")) return ALPN_h3; #else @@ -73,7 +73,7 @@ const char *Curl_alpnid2str(enum alpnid id) case ALPN_h2: return "h2"; case ALPN_h3: -#if defined(USE_QUICHE) && !defined(UNITTESTS) +#if (defined(USE_QUICHE) || defined(USE_NGHTTP2)) && !defined(UNITTESTS) return "h3-22"; #else return "h3";