summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* typecheck-gcc.h: check CURLINFO_CERTINFODaniel Stenberg2017-06-012-21/+7
| | | | | | ... and update the certinfo.c example accordingly. Fixes https://github.com/curl/curl/issues/846
* typecheck-gcc.h: separate getinfo slist checks from other pointersDaniel Stenberg2017-06-011-0/+1
| | | | Fixes #1524
* examples/externalsocket.c: s/closesocket/closecbDaniel Stenberg2017-05-311-2/+2
| | | | | | | | ... since closesocket is a function in WinSock. Reported-by: Marcel Raad Bug: https://github.com/curl/curl/commit/55fcb8485914700132fd1854c9509b66c955efbe#co mmitcomment-22347818
* CURLOPT_SSH_KEY*.3: typosDaniel Stenberg2017-05-312-2/+2
| | | | Reported-by: Gisle Vanem
* CURLOPT_STREAM_DEPENDS.3: typoDaniel Stenberg2017-05-311-1/+1
|
* CURLOPT_FNMATCH_FUNCTION.3: also modified example to avoid fcpp issuesDaniel Stenberg2017-05-311-1/+1
|
* CURLOPT_FNMATCH_DATA.3: modified example to avoid fcpp issuesDaniel Stenberg2017-05-311-1/+1
|
* opts: more than 100 more examples for man pages...Daniel Stenberg2017-05-31119-249/+1653
|
* examples/sampleconv.c: indent changes, made callbacks staticDaniel Stenberg2017-05-311-37/+37
|
* example/externalsocket.c: make it use CLOSESOCKETFUNCTION tooDaniel Stenberg2017-05-311-0/+11
|
* CURLOPT_PROXY.3: fix test 1140 breakageDaniel Stenberg2017-05-311-1/+1
|
* opts: more examples added to man pagesDaniel Stenberg2017-05-3019-41/+250
|
* docs: clarify NO_PROXY furtherDaniel Stenberg2017-05-302-3/+10
| | | | Fixes #1208
* CURLOPT_PROXY.3: describe the environment variables moreDaniel Stenberg2017-05-301-4/+12
|
* opts: more examples added in option man pagesDaniel Stenberg2017-05-2713-48/+190
|
* TODO: 6.4 is done, send telnet data in chunksDaniel Stenberg2017-05-251-6/+0
|
* docs/CURLOPT_SSLVERSION.3: Correct define name in examplePhil Crump2017-05-251-1/+1
| | | | Closes #1509
* examples: fix Wimplicit-fallthrough warningsMarcel Raad2017-05-245-0/+5
| | | | This is contained in -Wextra with GCC 7.
* LDAP: documentation update per #878 changes (#1506)Sergei Nikulov2017-05-242-1/+19
|
* redirect: store the "would redirect to" URL when max redirs is reachedDaniel Stenberg2017-05-231-3/+3
| | | | | | | | | Test 1261 added to verify. Reported-by: Lloyd Fournier Fixes #1489 Closes #1497
* ghiper.c/hiperfifo.c: add comment about missing timer functionalityDaniel Stenberg2017-05-192-4/+21
| | | | | | | | | It takes someone to read up on the APIs of these libraries to figure out how to do this correctly. Reported-by: Michael Kaufmann Closes #1253
* asiohiper.cpp / evhiperfifo.c: deal with negative timerfunction inputDaniel Stenberg2017-05-192-3/+3
| | | | | | | That means delete the timer. Reported-by: Michael Kaufmann Ref: #1253
* cmdline-opts/write-out.d: s/-L/--locationDaniel Stenberg2017-05-181-2/+3
| | | | | Since the man page generator wants the long option name version to generate the proper output.
* oauth2-bearer.d: mention the <token> argumentDaniel Stenberg2017-05-171-0/+1
|