diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-12 12:19:59 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-12 22:30:58 +0200 |
commit | 49e6b3857fb65d93b40ff6591b57d855586a8d99 (patch) | |
tree | 0be8437c63fd5bd6ec71c1ee78f1aa3d3a7c943d | |
parent | 368d444cc6d46d18747197d30dc483e93d53d8b7 (diff) |
altsvc: make it use h3-22 with ngtcp2 as well
-rw-r--r-- | lib/altsvc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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"; |