diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-06-29 16:22:05 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-29 17:09:59 +0200 |
commit | c891e681bf6d87cdf3d881f767f77d9bbd87ccf2 (patch) | |
tree | b4e2955ce2d034b8c93c94c7025db7a0234ec1ef /lib/vquic/ngtcp2.c | |
parent | 600db1e706a33eee90ac9cd9bde03e1a9dd262e7 (diff) | |
download | curl-c891e681bf6d87cdf3d881f767f77d9bbd87ccf2.tar.gz |
ngtcp2: sync with current master
ngtcp2 added two new callbacks
Reported-by: Lucien Zürcher
Fixes #5624
Closes #5627
Diffstat (limited to 'lib/vquic/ngtcp2.c')
-rw-r--r-- | lib/vquic/ngtcp2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index e5528231c..d29cb378d 100644 --- a/lib/vquic/ngtcp2.c +++ b/lib/vquic/ngtcp2.c @@ -757,7 +757,9 @@ static ngtcp2_conn_callbacks ng_callbacks = { cb_extend_max_stream_data, NULL, /* dcid_status */ NULL, /* handshake_confirmed */ - NULL /* recv_new_token */ + NULL, /* recv_new_token */ + ngtcp2_crypto_delete_crypto_aead_ctx_cb, + ngtcp2_crypto_delete_crypto_cipher_ctx_cb }; /* |