diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-12-09 23:31:23 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-12-10 08:57:07 +0100 |
commit | 32793b2c4fffa0537c1d380ec660e7c8916a2a21 (patch) | |
tree | b023ece254ae0e938fb1813062ee6c13a1881666 /lib/vquic | |
parent | 25b4e158e94311f8b4a712df722888b9e80dd0e8 (diff) | |
download | curl-32793b2c4fffa0537c1d380ec660e7c8916a2a21.tar.gz |
ngtcp2: make it build it current master again
Closes #6296
Diffstat (limited to 'lib/vquic')
-rw-r--r-- | lib/vquic/ngtcp2.c | 6 | ||||
-rw-r--r-- | lib/vquic/ngtcp2.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index 0f2fea0af..5a017b622 100644 --- a/lib/vquic/ngtcp2.c +++ b/lib/vquic/ngtcp2.c @@ -717,7 +717,7 @@ static int cb_get_new_connection_id(ngtcp2_conn *tconn, ngtcp2_cid *cid, return 0; } -static ngtcp2_conn_callbacks ng_callbacks = { +static ngtcp2_callbacks ng_callbacks = { ngtcp2_crypto_client_initial_cb, NULL, /* recv_client_initial */ cb_recv_crypto_data, @@ -1134,7 +1134,7 @@ static int cb_h3_send_stop_sending(nghttp3_conn *conn, int64_t stream_id, return 0; } -static nghttp3_conn_callbacks ngh3_callbacks = { +static nghttp3_callbacks ngh3_callbacks = { cb_h3_acked_stream_data, /* acked_stream_data */ cb_h3_stream_close, cb_h3_recv_data, @@ -1166,7 +1166,7 @@ static int init_ngh3_conn(struct quicsocket *qs) return CURLE_QUIC_CONNECT_ERROR; } - nghttp3_conn_settings_default(&qs->h3settings); + nghttp3_settings_default(&qs->h3settings); rc = nghttp3_conn_client_new(&qs->h3conn, &ngh3_callbacks, diff --git a/lib/vquic/ngtcp2.h b/lib/vquic/ngtcp2.h index c6d4d12e6..102ff22e1 100644 --- a/lib/vquic/ngtcp2.h +++ b/lib/vquic/ngtcp2.h @@ -62,7 +62,7 @@ struct quicsocket { socklen_t local_addrlen; nghttp3_conn *h3conn; - nghttp3_conn_settings h3settings; + nghttp3_settings h3settings; int qlogfd; }; |