summaryrefslogtreecommitdiff
path: root/docs/HTTP3.md
Commit message (Collapse)AuthorAgeFilesLines
* travis: enable quiche's FFI featureAlessandro Ghedini2021-02-011-1/+1
|
* http3: use the master branch of GnuTLS for testingDaiki Ueno2020-11-221-4/+4
| | | | Closes #6235
* alt-svc: enable by defaultDaniel Stenberg2020-10-251-3/+3
| | | | | | | | Remove CURLALTSVC_IMMEDIATELY, which was never implemented/supported. alt-svc support in curl is no longer considered experimental Closes #5868
* HTTP/3: update to OpenSSL_1_1_1g-quic-draft-29Eric Curtin2020-08-271-1/+1
| | | | Closes #5871
* travis: update quiche builds for new boringssl layoutAlessandro Ghedini2020-07-181-3/+3
| | | | | | | | | | This is required after https://github.com/cloudflare/quiche/pull/593 moved BoringSSL around slightly. This also means that Go is not needed to build BoringSSL anymore (the one provided by quiche anyway). Closes #5691
* HTTP3.md: clarify cargo build directoryAdnan Khan2020-06-051-0/+1
| | | | | | Cargo needs to be called from within the 'quiche' directory. Closes #5522
* travis: simplify quiche build instructions wrt boringsslPeter Wu2020-05-221-19/+5
| | | | | | | quiche builds boringssl as static library, reuse that instead of building another shared library. Closes #5438
* docs/HTTP3: add qlog to the quiche build instructionDaniel Stenberg2020-05-071-1/+1
|
* vquic: add support for GnuTLS backend of ngtcp2Daiki Ueno2020-03-311-1/+41
| | | | | | | | Currently, the TLS backend used by vquic/ngtcp2.c is selected at compile time. Therefore OpenSSL support needs to be explicitly disabled. Signed-off-by: Daiki Ueno <dueno@redhat.com> Closes #5148
* altsvc: both h3 backends now speak h3-27Daniel Stenberg2020-03-021-1/+1
| | | | ... also updated the HTTP3 build description for ngtcp2 accordingly.
* docs/HTTP3: add --enable-alt-svc to curl's configureDaniel Stenberg2020-02-051-3/+3
|
* docs/HTTP3: update the OpenSSL branch to use for ngtcp2Daniel Stenberg2020-02-041-1/+1
| | | | Reported-by: James Fuller
* docs: fix some typosmhasbini2019-12-061-1/+1
| | | | Closes #4680
* HTTP3: fix typo somehere1 > somewhere1Trivikram Kamat2019-10-291-1/+1
| | | | Closes #4535
* HTTP3: fix prefix parameter for ngtcp2 buildSpezifant2019-09-261-1/+1
| | | | Closes #4430
* HTTP3: merged and simplified the two 'running' sectionsDaniel Stenberg2019-09-261-21/+7
|
* HTTP3: show an --alt-svc using example tooDaniel Stenberg2019-09-261-0/+6
|
* HTTP3: update quic.aiortc.org + add link to server listDaniel Stenberg2019-09-261-1/+3
| | | | Reported-by: Jeremy Lainé
* HTTP3.md: move -p for mkdir, remove -j for makeAlex Samorukov2019-09-241-3/+3
| | | | | | | | | - mkdir on OSX/Darwin requires `-p` argument before dir - portabbly figuring out number of cores is an exercise for somewhere else Closes #4407
* altsvc: both backends run h3-23 nowDaniel Stenberg2019-09-211-2/+2
| | | | Closes #4395
* docs/HTTP3: fix `--with-ssl` ngtcp2 configure flagJimmy Gaussen2019-09-121-1/+1
| | | | Closes #4338
* HTTP3: switched openssl branch to useDaniel Stenberg2019-08-271-1/+1
|
* configure: use pkg-config to detect quicheAlessandro Ghedini2019-08-201-3/+3
| | | | | | | | | This removes the need to hard-code the quiche target path in configure.ac. This depends on https://github.com/cloudflare/quiche/pull/128 Closes #4237
* docs/HTTP3: simplify quiche build instructionJunho Choi2019-08-121-6/+2
| | | | | | Use --recursive to get boringssl in one line Closes #4219
* HTTP3: use ngtcp2's draft-22 branchDaniel Stenberg2019-08-121-1/+1
|
* nghttp3: required when ngtcp2 is used for QUICDaniel Stenberg2019-08-121-6/+36
| | | | | | | | - checked for by configure - updated docs/HTTP3.md - shown in the version string Closes #4210
* HTTP3.md: Update quiche build instructionsAlex Mayorga2019-08-101-2/+12
| | | | | | | Added cloning for quiche and BoringSSL and modified the build instructions so they work on a clean folder. Closes #4208
* CURLOPT_HTTP_VERSION: seting this to 3 forces HTTP/3 use directlyDaniel Stenberg2019-08-081-5/+5
| | | | | | | | | | | | Even though it cannot fall-back to a lower HTTP version automatically. The safer way to upgrade remains via CURLOPT_ALTSVC. CURLOPT_H3 no longer has any bits that do anything and might be removed before we remove the experimental label. Updated the curl tool accordingly to use "--http3". Closes #4197
* docs/HTTP3: refreshed as it is now in master and HTTP/3 can be testedDaniel Stenberg2019-08-061-14/+14
|
* HTTP3: initial (experimental) supportDaniel Stenberg2019-07-211-0/+85
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