]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cf-ngtcp2-cmn: initialize new callback ptr for ngtcp2 1.24.0+, bump in CI
authorViktor Szakats <commit@vsz.me>
Sun, 28 Jun 2026 11:20:50 +0000 (13:20 +0200)
committerViktor Szakats <commit@vsz.me>
Sun, 28 Jun 2026 11:57:31 +0000 (13:57 +0200)
Fixes #22205

Closes #22207

.github/workflows/http3-linux.yml
lib/vquic/cf-ngtcp2-cmn.c

index d7cd1adbf726f1f5ceb8b9e9c8dfddc33a212171..c6cafaafcc3954d88fd112a9b73e2061c3d8cdf6 100644 (file)
@@ -58,7 +58,7 @@ env:
   # renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://github.com
   NGHTTP3_VERSION: 1.17.0
   # renovate: datasource=github-tags depName=ngtcp2/ngtcp2 versioning=semver registryUrl=https://github.com
-  NGTCP2_VERSION: 1.23.0
+  NGTCP2_VERSION: 1.24.0
   # renovate: datasource=github-tags depName=nghttp2/nghttp2 versioning=semver registryUrl=https://github.com
   NGHTTP2_VERSION: 1.69.0
   # no tagged releases
index e1ca18cf69c80ec8732aa81b59a4b5a5e4717ff2..419c52009acdcce4c1e06e52981d6d34930796f5 100644 (file)
@@ -596,6 +596,9 @@ static ngtcp2_callbacks ng_callbacks = {
   NULL, /* dcid_status2 */
   ngtcp2_crypto_get_path_challenge_data2_cb, /* get_path_challenge_data2 */
 #endif
+#ifdef NGTCP2_CALLBACKS_V4  /* ngtcp2 v1.24.0+ */
+  NULL, /* recv_stop_sending */
+#endif
 };
 
 #if defined(_MSC_VER) && defined(_DLL)