summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* docs: add note on failed handles not being counted by curl_multi_performDenis Chaplygin2019-10-032-2/+3
| | | | Closes #4446
* CURLMOPT_MAX_CONCURRENT_STREAMS.3: fix SEE ALSO typoDaniel Stenberg2019-10-031-1/+1
|
* ESNI: initial build/setupNiall2019-10-028-1/+220
| | | | Closes #4011
* RELEASE-NOTES: syncedDaniel Stenberg2019-10-021-5/+34
|
* redirect: when following redirects to an absolute URL, URL encode itDaniel Stenberg2019-10-023-1/+78
| | | | | | | | ... to make it handle for example (RFC violating) embeded spaces. Reported-by: momala454 on github Fixes #4445 Closes #4447
* urlapi: fix URL encoding when setting a full URLDaniel Stenberg2019-10-021-1/+16
|
* tool_operate: rename functions to make more senseDaniel Stenberg2019-10-021-32/+35
|
* curl: create easy handles on-demand and not ahead of timeDaniel Stenberg2019-10-027-220/+309
| | | | | | | | | | This should again enable crazy-large download ranges of the style [1-10000000] that otherwise easily ran out of memory starting in 7.66.0 when this new handle allocating scheme was introduced. Reported-by: Peter Sumatra Fixes #4393 Closes #4438
* CURLMOPT_MAX_CONCURRENT_STREAMS: new setoptKunal Ekawde2019-10-0210-6/+97
| | | | Closes #4410
* chunked-encoding: stop hiding the CURLE_BAD_CONTENT_ENCODING errorDaniel Stenberg2019-10-025-24/+39
| | | | | | | | | Unknown content-encoding would get returned as CURLE_WRITE_ERROR if the response is chunked-encoded. Reported-by: Ilya Kosarev Fixes #4310 Closes #4449
* checksrc: fix uninitialized variable warningMarcel Raad2019-10-011-1/+1
| | | | | | The loop doesn't need to be executed without a file argument. Closes https://github.com/curl/curl/pull/4444
* urlapi: fix unused variable warningMarcel Raad2019-10-011-0/+2
| | | | | | `dest` is only used with `ENABLE_IPV6`. Closes https://github.com/curl/curl/pull/4444
* lib: silence conversion warningsMarcel Raad2019-10-012-2/+2
| | | | Closes https://github.com/curl/curl/pull/4444
* AppVeyor: add 32-bit MinGW-w64 buildMarcel Raad2019-09-301-0/+13
| | | | | | | | | | With WinSSL and testing enabled so that it would have detected most of the warnings fixed in [0] and [1]. [0] https://github.com/curl/curl/pull/4398 [1] https://github.com/curl/curl/pull/4415 Closes https://github.com/curl/curl/pull/4433
* AppVeyor: remove MSYS2_ARG_CONV_EXCL for winbuildMarcel Raad2019-09-301-1/+0
| | | | | | It's only used for MSYS2 with MinGW. Closes
* git: add tests/server/disabled to .gitignoreEmil Engler2019-09-301-0/+1
| | | | Closes #4441
* altsvc: accept quoted ma and persist valuesDaniel Stenberg2019-09-303-3/+23
| | | | | | As mandated by the spec. Test 1654 is extended to verify. Closes #4443
* mailmap: a Lucas fixDaniel Stenberg2019-09-301-0/+1
|
* quiche: update HTTP/3 config creation to new APIlucas2019-09-291-1/+1
|
* BINDINGS: PureBasic, Net::Curl for perl and NimDaniel Stenberg2019-09-291-1/+6
|
* BINDINGS: Kapito is an Erlang library, basically a bindingDaniel Stenberg2019-09-291-0/+2
|
* BINDINGS: added clj-curlDaniel Stenberg2019-09-291-0/+2
| | | | Reported-by: Lucas Severo
* docs: disambiguate CURLUPART_HOST is for host name (ie no port)Jay Satiro2019-09-282-4/+6
| | | | Closes #4424
* cookies: using a share with cookies shouldn't enable the cookie engineDaniel Stenberg2019-09-287-61/+124
| | | | | | | | | | | | | | | | | The 'share object' only sets the storage area for cookies. The "cookie engine" still needs to be enabled or activated using the normal cookie options. This caused the curl command line tool to accidentally use cookies without having been told to, since curl switched to using shared cookies in 7.66.0. Test 1166 verifies Updated test 506 Fixes #4429 Closes #4434
* setopt: handle ALTSVC set to NULLDaniel Stenberg2019-09-271-1/+2
|
* RELEASE-NOTES: syncedDaniel Stenberg2019-09-271-7/+48
|
* INSTALL: add vcpkg installation instructionsgrdowns2019-09-271-0/+12
| | | | Closes #4435
* FTP: add test for FTPFILE_NOCWD: Avoid redundant CWDsZenju2019-09-274-2/+228
| | | | | | Add libtest 661 Closes #4417
* FTP: url-decode path before evaluationZenju2019-09-274-172/+128
| | | | Closes #4428
* tests: fix narrowing conversion warningsMarcel Raad2019-09-272-3/+3
| | | | | | | `timediff_t` is 64 bits wide also on 32-bit systems since commit b1616dad8f0. Closes https://github.com/curl/curl/pull/4415
* vtls: Fix comment typo about macosx-version-min compiler flagjulian2019-09-271-1/+1
| | | | Closes https://github.com/curl/curl/pull/4425
* README: minor grammar fixYechiel Kalmenson2019-09-261-1/+1
| | | | Closes #4431
* HTTP3: fix prefix parameter for ngtcp2 buildSpezifant2019-09-261-1/+1
| | | | Closes #4430
* quiche: don't close connection at end of stream!Daniel Stenberg2019-09-261-3/+1
|
* quiche: set 'drain' when returning without having drained the queuesDaniel Stenberg2019-09-261-4/+7
|
* Revert "FTP: url-decode path before evaluation"Daniel Stenberg2019-09-264-128/+174
| | | | This reverts commit 2f036a72d543e96128bd75cb0fedd88815fd42e2.
* 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
|
* FTP: url-decode path before evaluationZenju2019-09-264-174/+128
| | | | Closes #4423
* openssl: use strerror on SSL_ERROR_SYSCALLDaniel Stenberg2019-09-261-2/+8
| | | | | | | Instead of showing the somewhat nonsensical errno number, use strerror() to provide a more relatable error message. Closes #4411
* HTTP3: update quic.aiortc.org + add link to server listDaniel Stenberg2019-09-261-1/+3
| | | | Reported-by: Jeremy Lainé
* url: don't set appconnect time for non-ssl/non-ssh connectionsJay Satiro2019-09-262-1/+4
| | | | | | | | | | | | | | | | Prior to this change non-ssl/non-ssh connections that were reused set TIMER_APPCONNECT [1]. Arguably that was incorrect since no SSL/SSH handshake took place. [1]: TIMER_APPCONNECT is publicly known as CURLINFO_APPCONNECT_TIME in libcurl and %{time_appconnect} in the curl tool. It is documented as "the time until the SSL/SSH handshake is completed". Reported-by: Marcel Hernandez Ref: https://github.com/curl/curl/issues/3760 Closes https://github.com/curl/curl/pull/3773
* ngtcp2: remove fprintf() callsDaniel Stenberg2019-09-251-23/+17
| | | | | | | | - convert some of them to H3BUF() calls to infof() - remove some of them completely - made DEBUG_HTTP3 defined only if CURLDEBUG is set for now Closes #4421
* url: fix the NULL hostname compiler warning caseJay Satiro2019-09-251-6/+2
| | | | Closes #4403
* travis: move the go install to linux-onlyJay Satiro2019-09-251-4/+10
| | | | | ... to repair the build again Closes #4403
* altsvc: correct the #ifdef for the ngtcp2 backendDaniel Stenberg2019-09-251-2/+2
|
* altsvc: save h3 as h3-23Daniel Stenberg2019-09-251-1/+1
| | | | Follow-up to d176a2c7e5
* urlapi: question mark within fragment is still fragmentDaniel Stenberg2019-09-242-4/+24
| | | | | | | | | | | The parser would check for a query part before fragment, which caused it to do wrong when the fragment contains a question mark. Extended test 1560 to verify. Reported-by: Alex Konev Fixes #4412 Closes #4413
* 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
* os400: getpeername() and getsockname() return ebcdic AF_UNIX sockaddr,Patrick Monnerat2019-09-242-55/+107
| | | | | | | | | As libcurl now uses these 2 system functions, wrappers are needed on os400 to convert returned AF_UNIX sockaddrs to ascii. This is a follow-up to commit 7fb54ef. See also #4037. Closes #4214