summaryrefslogtreecommitdiff
path: root/lib/quic.h
Commit message (Collapse)AuthorAgeFilesLines
* version: turn version number functions into returning voidDaniel Stenberg2021-06-301-1/+1
| | | | | | | ... as we never use the return codes from them. Reviewed-by: Daniel Gustafsson Closes #7319
* quic: remove conn->data useDaniel Stenberg2021-01-191-6/+9
| | | | Closes #6485
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* http3: fix two build errors, silence warningsViktor Szakats2020-10-161-1/+1
| | | | | | | | | * fix two build errors due to mismatch between function declarations and their definitions * silence two mismatched signs warnings via casts Approved-by: Daniel Stenberg Closes #6093
* connect: improve happy eyeballs handlingDaniel Stenberg2020-06-181-1/+3
| | | | | | | | For QUIC but also for regular TCP when the second family runs out of IPs with a failure while the first family is still trying to connect. Separated the timeout handling for IPv4 and IPv6 connections when they both have a number of addresses to iterate over.
* ngtcp2: use overflow buffer for extra HTTP/3 dataJavier Blazquez2019-11-181-0/+4
| | | | | Fixes #4525 Closes #4603
* ngtcp2: accept upload via callbackDaniel Stenberg2019-08-231-1/+4
| | | | Closes #4256
* ngtcp2: do QUIC connections happy-eyeballs friendlyDaniel Stenberg2019-08-141-2/+4
|
* quic.h: remove unused protoDaniel Stenberg2019-08-131-6/+0
|
* HTTP3: initial (experimental) supportDaniel Stenberg2019-07-211-0/+54
USe configure --with-ngtcp2 or --with-quiche Using either option will enable a HTTP3 build. Co-authored-by: Alessandro Ghedini <alessandro@ghedini.me> Closes #3500