summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* CURLOPT_SSH_COMPRESSION.3: enable with 1LDaniel Stenberg2017-08-171-4/+4
| | | | (leaves other values reserved for the future)
* compressed-ssh.d: "Added: 7.56.0"Daniel Stenberg2017-08-171-0/+1
|
* ssh: add the ability to enable compression (for SCP/SFTP)Viktor Szakats2017-08-176-1/+70
| | | | | | | | | | | | | | | | | | The required low-level logic was already available as part of `libssh2` (via `LIBSSH2_FLAG_COMPRESS` `libssh2_session_flag()`[1] option.) This patch adds the new `libcurl` option `CURLOPT_SSH_COMPRESSION` (boolean) and the new `curl` command-line option `--compressed-ssh` to request this `libssh2` feature. To have compression enabled, it is required that the SSH server supports a (zlib) compatible compression method and that `libssh2` was built with `zlib` support enabled. [1] https://www.libssh2.org/libssh2_session_flag.html Ref: https://github.com/curl/curl/issues/1732 Closes https://github.com/curl/curl/pull/1735
* examples/ftpuploadresume: checksrc complianceJay Satiro2017-08-161-1/+2
|
* progress: Track total times following redirectsRyan Winograd2017-08-151-7/+0
| | | | | | | | | | | | | | | | | | | | | | Update the progress timers `t_nslookup`, `t_connect`, `t_appconnect`, `t_pretransfer`, and `t_starttransfer` to track the total times for these activities when a redirect is followed. Previously, only the times for the most recent request would be tracked. Related changes: - Rename `Curl_pgrsResetTimesSizes` to `Curl_pgrsResetTransferSizes` now that the function only resets transfer sizes and no longer modifies any of the progress timers. - Add a bool to the `Progress` struct that is used to prevent double-counting `t_starttransfer` times. Added test case 1399. Fixes #522 and Known Bug 1.8 Closes #1602 Reported-by: joshhe on github
* zsh.pl: produce a working completion script againKamil Dudka2017-08-151-1/+1
| | | | | | | | | | | Commit curl-7_54_0-118-g8b2f22e changed the output format of curl --help to use <file> and <dir> instead of FILE and DIR, which caused zsh.pl to produce a broken completion script: % curl --<TAB> _curl:10: no such file or directory: seconds Closes #1779
* examples/ftpuploadresume.c: use portable codeDaniel Stenberg2017-08-142-26/+14
| | | | ... converted from the MS specific _snscanf()
* RELEASE-NOTES/THANKS: curl 7.55.1 release timecurl-7_55_1Daniel Stenberg2017-08-131-0/+8
|
* connect-to.d: better languageDaniel Stenberg2017-08-121-2/+2
|
* connect-to.d: clarifiedDaniel Stenberg2017-08-121-9/+12
|
* docs: fix typo funtion -> functionAlessandro Ghedini2017-08-121-1/+1
| | | | Closes #1770
* docs: fix grammar in CURL_SSLVERSION_MAX_DEFAULT descriptionAlessandro Ghedini2017-08-122-6/+6
|
* docs: fix typo stuct -> structAlessandro Ghedini2017-08-122-2/+2
|
* make install: add 8 missing man pages to the installationDaniel Stenberg2017-08-092-1/+8
|
* THANKS: 20 new contributors in 7.55.0Daniel Stenberg2017-08-092-0/+21
|
* docs/comments: Update to secure URL versionsViktor Szakats2017-08-088-13/+13
| | | | Closes #1741
* CURLOPT_NETRC.3: fix typo in 7e48aa386156f9c2Daniel Stenberg2017-08-021-2/+2
| | | | Reported-by: Viktor Szakats
* CURLOPT_NETRC.3: mention the file name on windowsDaniel Stenberg2017-08-021-2/+4
| | | | ... and CURLOPT_NETRC_FILE(3).
* BUGS: improved phrasing about security bugsDaniel Stenberg2017-08-011-3/+3
| | | | Reported-by: Max Dymond
* BUGS: clarify how to report security related bugsDaniel Stenberg2017-08-011-15/+32
|
* include.d: clarify --include is only for response headersJay Satiro2017-07-301-1/+1
| | | | | | | Follow-up to 171f8de and de6de94. Bug: https://github.com/curl/curl/commit/de6de94#commitcomment-23370851 Reported-by: Daniel Stenberg
* include.d: clarify that it concerns the response headersDaniel Stenberg2017-07-281-2/+5
| | | | | Reported-by: olesteban at github Fixes #1704
* CURLOPT_POSTFIELDS.3: explain the 100-continue magic betterDaniel Stenberg2017-07-071-3/+5
|
* curl_easy_escape.3: mention the (lack of) encodingDaniel Stenberg2017-07-071-1/+10
| | | | | Fixes #1612 Reported-by: Jeroen Ooms
* TODO: 1.10 auto-detect proxyDaniel Stenberg2017-07-051-0/+13
| | | | Closes #1572
* TODO: HTTP proxy CONNECT is non-blocking nowDaniel Stenberg2017-07-051-1/+0
|
* make: build the docs subdir only from within srcDaniel Stenberg2017-06-301-2/+2
| | | | | | | | ... and don't build at all in include Prompted-by-work-by: Simon Warta Ref: #1590 Closes #1591
* curl_strequal.3: fix typo in SYNOPSISDaniel Stenberg2017-06-291-2/+2
| | | | | | Reported-by: Jesse Chisholm Fixes #1623
* curl --socks5-{basic,gssapi}: control socks5 authKamil Dudka2017-06-283-0/+16
| | | | Closes https://github.com/curl/curl/pull/1454
* CURLOPT_SOCKS5_AUTH: allowed methods for SOCKS5 proxy authKamil Dudka2017-06-283-0/+67
| | | | | | | | | | | | | | | | | | If libcurl was built with GSS-API support, it unconditionally advertised GSS-API authentication while connecting to a SOCKS5 proxy. This caused problems in environments with improperly configured Kerberos: a stock libcurl failed to connect, despite libcurl built without GSS-API connected fine using username and password. This commit introduces the CURLOPT_SOCKS5_AUTH option to control the allowed methods for SOCKS5 authentication at run time. Note that a new option was preferred over reusing CURLOPT_PROXYAUTH for compatibility reasons because the set of authentication methods allowed by default was different for HTTP and SOCKS5 proxies. Bug: https://curl.haxx.se/mail/lib-2017-01/0005.html Closes https://github.com/curl/curl/pull/1454
* CURLINFO_REDIRECT_URL.3: mention the CURLOPT_MAXREDIRS caseDaniel Stenberg2017-06-241-0/+3
| | | | ... supported since 7.54.1
* CONTRIBUTE.md: mention the out-of-tree build test tooDaniel Stenberg2017-06-221-5/+6
|
* --request-target: instead of --strip-path-slashDaniel Stenberg2017-06-219-21/+22
| | | | | | | | | | | | | | ... and CURLOPT_REQUEST_TARGET instead of CURLOPT_STRIP_PATH_SLASH. This option instead provides the full "alternative" target to use in the request, instead of extracting the path from the URL. Test 1298 and 1299 updated accordingly. Idea-by: Evert Pot Suggestion: https://daniel.haxx.se/blog/2017/06/19/options-with-curl/comment-page-1/#comment-18373 Closes #1593
* http: add --strip-path-slash and CURLOPT_STRIP_PATH_SLASHDaniel Stenberg2017-06-199-23/+74
| | | | | | | | | | | ... to enable sending "OPTIONS *" which wasn't possible previously. This option currently only works for HTTP. Added test cases 1298 + 1299 to verify Fixes #1280 Closes #1462
* getinfo: return sizes as curl_off_tDaniel Stenberg2017-06-1914-20/+429
| | | | | | | | | | | | | | | This change introduces new alternatives for the existing six curl_easy_getinfo() options that return sizes or speeds as doubles. The new versions are named like the old ones but with an appended '_T': CURLINFO_CONTENT_LENGTH_DOWNLOAD_T CURLINFO_CONTENT_LENGTH_UPLOAD_T CURLINFO_SIZE_DOWNLOAD_T CURLINFO_SIZE_UPLOAD_T CURLINFO_SPEED_DOWNLOAD_T CURLINFO_SPEED_UPLOAD_T Closes #1511
* CURLOPT_PREQUOTE.3: spellfix man page referenceDaniel Stenberg2017-06-181-1/+1
|
* TODO: update the TOC tooDaniel Stenberg2017-06-181-0/+1
|
* TODO: implement support for CURLOPT_PREQUOTE with SFTPDaniel Stenberg2017-06-182-5/+12
| | | | | | | ... also updated the CURLOPT_PREQUOTE.3 man page to mention the correct protocol support. Closes #1514
* curl: prevent binary output spewed to terminalDaniel Stenberg2017-06-161-6/+0
| | | | | | | | | ... unless "--output -" is used. Binary detection is done by simply checking for a binary zero in early data. Added test 1425 1426 to verify. Closes #1512
* Makefile.m32: enable -W for MinGW32 buildMarcel Raad2017-06-161-1/+1
| | | | | | The configure-based build also has this in addition to -Wall. Closes https://github.com/curl/curl/pull/1578
* TODO: the generated include file is goneDaniel Stenberg2017-06-151-28/+0
| | | | ... since commit 73a2fcea0b
* curl: allow --header and --proxy-header read from fileDaniel Stenberg2017-06-152-5/+12
| | | | | | | | So many headers can be provided as @filename. Suggested-by: Timothe Litt Closes #1486
* http-proxy: do the HTTP CONNECT process entirely non-blockingDaniel Stenberg2017-06-141-2/+1
| | | | | | | Mentioned as a problem since 2007 (8f87c15bdac63) and of course it existed even before that. Closes #1547
* includes: remove curl/curlbuild.h and curl/curlrules.hDaniel Stenberg2017-06-143-44/+2
| | | | | | | | Rely entirely on curl/system.h now. Introduced in Aug 2008 with commit 14240e9e109f. Now gone. Fixes #1456
* release: 7.54.1curl-7_54_1Daniel Stenberg2017-06-141-0/+24
|
* BINDINGS: update SP-Forth and OCaml urlsygrek2017-06-121-2/+2
|
* RELEASE-PROCEDURE: updated future release datesDaniel Stenberg2017-06-091-4/+5
|
* examples/multi-uv.c: fix deprecated symbolRyuichi KAWAMATA2017-06-081-1/+1
| | | | Closes #1557
* BINDINGS: add Ring bindingMahmoud Samir Fayed2017-06-031-0/+2
| | | | Closes https://github.com/curl/curl/pull/1539
* CONTRIBUTE.md: mention tests done on pull requestsDaniel Stenberg2017-06-041-7/+25
|