summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* curl: use .curlrc (with a dot) on Windows as wellbagder/curlrc-windowsDaniel Stenberg2019-08-202-52/+67
| | | | | | Fall-back to _curlrc if the dot-version is missing. Co-Authored-By: Steve Holme
* netrc: make the code try ".netrc" on Windows as wellDaniel Stenberg2019-08-191-59/+87
| | | | | | ... but fall back and try "_netrc" too if the dot version didn't work. Co-Authored-By: Steve Holme
* quiche: register debug callback once and earlierAlessandro Ghedini2019-08-171-12/+18
| | | | | | | | | | | The quiche debug callback is global and can only be initialized once, so make sure we don't do it multiple times (e.g. if multiple requests are executed). In addition this initializes the callback before the connection is created, so we get logs for the handshake as well. Closes #4236
* ssh: add a generic Curl_ssh_version function for SSH backendsDaniel Stenberg2019-08-174-26/+23
| | | | Closes #4235
* base64: check for SSH, not specific SSH backendsDaniel Stenberg2019-08-171-2/+2
|
* vssh: move ssh init/cleanup functions into backend codeDaniel Stenberg2019-08-174-18/+41
|
* vssh: create directory for SSH backend codeDaniel Stenberg2019-08-174-3/+5
|
* TODO/ROADMAP: remove "refuse downgrade redirects" and HTTP/3Daniel Stenberg2019-08-162-18/+0
| | | | | | | HTTP3 is now already in full progress Downgrade redirects can be achived almost exactly like that by setting CURLOPT_REDIR_PROTOCOLS.
* RELEASE-NOTES: syncedDaniel Stenberg2019-08-161-12/+32
|
* travis: add a quiche buildDaniel Stenberg2019-08-161-2/+29
| | | | Closes #4207
* http: fix use of credentials from URL when using HTTP proxyDaniel Stenberg2019-08-165-13/+117
| | | | | | | | | | | | | | | | When a username and password are provided in the URL, they were wrongly removed from the stored URL so that subsequent uses of the same URL wouldn't find the crendentials. This made doing HTTP auth with multiple connections (like Digest) mishave. Regression from 46e164069d1a5230 (7.62.0) Test case 335 added to verify. Reported-by: Mike Crowe Fixes #4228 Closes #4229
* tests: Replace outdated test case numbering documentationMike Crowe2019-08-151-21/+6
| | | | | | | | | Tests are no longer grouped by numeric range[1]. Let's stop saying that and provide some alternative advice for numbering tests. [1] https://curl.haxx.se/mail/lib-2019-08/0043.html Closes #4227
* travis: reduce number of torture tests in 'coverage'Daniel Stenberg2019-08-151-1/+1
| | | | | | | | ... to make it complete in time. This cut seems not almost not affect the coverage percentage and yet completes within 35 minutes on travis where the previous runs recently always timed out after 50. Closes #4223
* configure: use -lquiche to link to quicheIgor Makarov2019-08-151-1/+1
| | | | Closes #4226
* ngtcp2: provide the callbacks as a static structDaniel Stenberg2019-08-152-32/+33
| | | | ... instead of having them in quicsocket
* ngtcp2: add missing nghttp3_conn_add_write_offset callTatsuhiro Tsujikawa2019-08-151-0/+9
| | | | Closes #4225
* ngtcp2: deal with stream closeTatsuhiro Tsujikawa2019-08-151-1/+10
|
* ngtcp2: Consume QUIC STREAM data properlyTatsuhiro Tsujikawa2019-08-151-8/+13
|
* ngtcp2: don't reinitialize SSL on RetryTatsuhiro Tsujikawa2019-08-151-1/+0
|
* multi: getsock improvements for QUIC connectingDaniel Stenberg2019-08-141-1/+7
|
* connect: connections are persistent by default for HTTP/3Daniel Stenberg2019-08-141-0/+3
|
* quiche: happy eyeballsDaniel Stenberg2019-08-141-31/+42
| | | | Closes #4220
* ngtcp2: do QUIC connections happy-eyeballs friendlyDaniel Stenberg2019-08-146-230/+262
|
* curl_version: bump string buffer size to 250Daniel Stenberg2019-08-141-1/+1
| | | | | With HTTP/3 libs and plenty TLS libs, I manged to hit the limit (which causes a truncated output).
* CURLOPT_ALTSVC.3: use a "" file name to not load from a fileDaniel Stenberg2019-08-141-0/+2
|
* vauth: Use CURLE_AUTH_ERROR for auth function errorsJay Satiro2019-08-1411-18/+62
| | | | | | | | | | | | | | - Add new error code CURLE_AUTH_ERROR. Prior to this change auth function errors were signaled by CURLE_OUT_OF_MEMORY and CURLE_RECV_ERROR, and neither one was technically correct. Ref: https://github.com/curl/curl/pull/3848 Co-authored-by: Dominik Hölzl Closes https://github.com/curl/curl/pull/3864
* curl_version_info: make the quic_version a constDaniel Stenberg2019-08-132-2/+2
| | | | | | Follow-up from 1a2df1518ad8653f Closes #4222
* examples: add http3.c, altsvc.c and http3-present.cDaniel Stenberg2019-08-134-1/+159
| | | | Closes #4221
* nss: use TLSv1.3 as default if supportedPeter Wu2019-08-131-10/+6
| | | | | | | | | | | | SSL_VersionRangeGetDefault returns (TLSv1.0, TLSv1.2) as supported range in NSS 3.45. It looks like the intention is to raise the minimum version rather than lowering the maximum, so adjust accordingly. Note that the caller (nss_setup_connect) initializes the version range to (TLSv1.0, TLSv1.3), so there is no need to check for >= TLSv1.0 again. Closes #4187 Reviewed-by: Daniel Stenberg Reviewed-by: Kamil Dudka
* quic.h: remove unused protoDaniel Stenberg2019-08-131-6/+0
|
* curl_version_info.3: mentioned ALTSVC and HTTP3Daniel Stenberg2019-08-131-45/+49
| | | | ... and sorted the list alphabetically
* lib/quic.c: unused - removedDaniel Stenberg2019-08-132-39/+1
|
* CURLOPT_ALTSVC_CTRL.3: remove CURLALTSVC_ALTUSEDDaniel Stenberg2019-08-131-5/+2
| | | | Follow-up to 98c3f148 that removed it from the header file
* docs/HTTP3: simplify quiche build instructionJunho Choi2019-08-121-6/+2
| | | | | | Use --recursive to get boringssl in one line Closes #4219
* altsvc: make it use h3-22 with ngtcp2 as wellDaniel Stenberg2019-08-121-2/+2
|
* ngtcp2: initial h3 request workDaniel Stenberg2019-08-122-24/+116
| | | | Closes #4217
* curl_version_info: offer quic (and h3) library infoDaniel Stenberg2019-08-123-2/+21
| | | | Closes #4216
* HTTP3: use ngtcp2's draft-22 branchDaniel Stenberg2019-08-121-1/+1
|
* RELEASE-NOTES: syncedDaniel Stenberg2019-08-121-8/+14
|
* CURLOPT_READFUNCTION.3: provide inline exampleDaniel Stenberg2019-08-121-2/+31
| | | | ... instead of mentioning one in another place
* ngtcp2: send HTTP/3 request with nghttp3Tatsuhiro Tsujikawa2019-08-121-44/+221
| | | | | | | | This commit makes sending HTTP/3 request with nghttp3 work. It minimally receives HTTP response and calls nghttp3 callbacks, but no processing is made at the moment. Closes #4215
* nghttp3: initial h3 template code addedDaniel Stenberg2019-08-122-1/+501
|
* nghttp3: required when ngtcp2 is used for QUICDaniel Stenberg2019-08-123-9/+128
| | | | | | | | - checked for by configure - updated docs/HTTP3.md - shown in the version string Closes #4210
* asyn-thread: issue CURL_POLL_REMOVE before closing socketEric Wong2019-08-111-5/+20
| | | | | | | | | | | | This avoids EBADF errors from EPOLL_CTL_DEL operations in the ephiperfifo.c example. EBADF is dangerous in multi-threaded applications where I rely on epoll_ctl to operate on the same epoll description from different threads. Follow-up to eb9a604f8d7db8 Bug: https://curl.haxx.se/mail/lib-2019-08/0026.html Closes #4211
* configure: avoid undefined check_for_ca_bundleCarlo Marcelo Arenas Belón2019-08-111-1/+1
| | | | | | | | instead of using a "greater than 0" test, check for variable being set, as it is always set to 1, and could be left unset if non of OPENSSL MBEDTLS GNUTLS WOLFSSL is being configured for. Closes #4213
* ngtcp2: Send ALPN h3-22Tatsuhiro Tsujikawa2019-08-111-4/+5
| | | | Closes #4212
* ngtcp2: use ngtcp2_settings_default and specify initial_tsTatsuhiro Tsujikawa2019-08-111-4/+2
|
* curl_global_init_mem.3: mention it was added in 7.12.0Daniel Stenberg2019-08-111-1/+3
|
* ngtcp2: make the QUIC handshake workTatsuhiro Tsujikawa2019-08-103-76/+267
| | | | Closes #4209
* 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