diff options
author | lucas <lucas@cloudflare.com> | 2019-09-27 12:31:13 +0100 |
---|---|---|
committer | Alessandro Ghedini <alessandro@ghedini.me> | 2019-09-29 22:40:58 +0100 |
commit | 19338e97216f774976fd6949f4fc675475f528b7 (patch) | |
tree | 60966cc5efbe02ef45313cb3d00c4b0bf0f20279 /lib | |
parent | 1c134e9cf4d1604d6c009f4ec06581c2e86e3062 (diff) |
quiche: update HTTP/3 config creation to new API
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vquic/quiche.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index 55381def0..28eba8bbd 100644 --- a/lib/vquic/quiche.c +++ b/lib/vquic/quiche.c @@ -237,7 +237,7 @@ static CURLcode quiche_has_connected(struct connectdata *conn, conn->httpversion = 30; conn->bundle->multiuse = BUNDLE_MULTIPLEX; - qs->h3config = quiche_h3_config_new(0, 1024, 0, 0); + qs->h3config = quiche_h3_config_new(); if(!qs->h3config) return CURLE_OUT_OF_MEMORY; |