summaryrefslogtreecommitdiff
path: root/docs/libcurl/opts
Commit message (Collapse)AuthorAgeFilesLines
* CURLINFO_RESPONSE_CODE.3: add exampleDaniel Schauenberg2016-01-161-1/+13
|
* ssh: make CURLOPT_SSH_PUBLIC_KEYFILE treat "" as NULLKamil Dudka2016-01-151-4/+4
| | | | | | | | | | | | The CURLOPT_SSH_PUBLIC_KEYFILE option has been documented to handle empty strings specially since curl-7_25_0-31-g05a443a but the behavior was unintentionally removed in curl-7_38_0-47-gfa7d04f. This commit restores the original behavior and clarifies it in the documentation that NULL and "" have both the same meaning when passed to CURLOPT_SSH_PUBLIC_KEYFILE. Bug: http://curl.haxx.se/mail/lib-2016-01/0072.html
* CURLOPT_RESOLVE.3: minor language polishDaniel Stenberg2016-01-131-8/+7
|
* mbedtls: implement CURLOPT_PINNEDPUBLICKEYThomas Glanzmann2016-01-101-2/+3
|
* CURLOPT_RANGE: for HTTP servers, range support is optionalDaniel Stenberg2015-12-241-4/+8
|
* http: add libcurl option to allow HTTP/2 for HTTPS onlyDaniel Stenberg2015-12-131-1/+8
| | | | | ... and stick to 1.1 for HTTP. This is in line with what browsers do and should have very little risk.
* CURLOPT_HEADERFUNCTION.3: fix typoDaniel Stenberg2015-11-231-1/+1
| | | | | | Refer to _HEADERDATA not _WRITEDATA. Reported-by: MichaƂ Piechowski
* CURLMOPT_PUSHFUNCTION.3: *_byname() returns only the first headerDaniel Stenberg2015-11-161-1/+2
| | | | ... if there are more than one using the same name
* opts: Corrected TLS protocols list to include POP3S rather than POP3Steve Holme2015-11-0719-33/+33
|
* ftp: allow CURLOPT_IGNORE_CONTENT_LENGTH to ignore sizeKurt Fankhauser2015-10-231-4/+10
| | | | | | | This allows FTP transfers with growing (or shrinking) files without causing a transfer error. Closes #480
* CURLOPT_STREAM_WEIGHT.3: call argument 'weight' tooDaniel Stenberg2015-10-231-8/+13
| | | | | ... and add a little example of what the weight actually means. "Relative proportion of bandwidth".
* http2: add stream options to dist and curl_easy_setopt.3Daniel Stenberg2015-10-231-3/+6
|
* http2: s/priority/weightDaniel Stenberg2015-10-233-11/+13
|
* http2: added three stream prio/deps optionsDaniel Stenberg2015-10-233-0/+171
| | | | | | | | CURLOPT_STREAM_DEPENDS CURLOPT_STREAM_DEPENDS_E CURLOPT_STREAM_PRIORITY
* CURLOPT_CONNECT_ONLY.3: CURLINFO_LASTSOCKET => CURLINFO_ACTIVESOCKETSvyatoslav Mishyn2015-10-081-1/+1
|
* CURLOPT_CERTINFO.3: fix reference to CURLINFO_CERTINFODaniel Stenberg2015-10-081-3/+3
|
* docs: fix unescaped '\n' in man pagesSvyatoslav Mishyn2015-09-272-4/+4
| | | | Closes https://github.com/bagder/curl/pull/459
* CURLINFO_TLS_SESSION: always return backend infoDaniel Stenberg2015-09-221-2/+10
| | | | | | ... even for those that don't support providing anything in the 'internals' struct member since it offers a convenient way for applications to figure this out.
* CURLOPT_PROXY.3: A proxy given as env variable gets no special treatmentRichard van den Berg2015-09-221-2/+2
| | | | Closes #449
* CURLOPT_PINNEDPUBLICKEY.3: replace test.com with example.comViktor Szakats2015-09-201-4/+4
| | | | closes #443
* CURLOPT_PINNEDPUBLICKEY.3: mention error codeDaniel Stenberg2015-09-171-1/+3
|
* CURLOPT_PINNEDPUBLICKEY.3: Improve pubkey extraction exampleJay Satiro2015-09-141-0/+14
| | | | | | | - Show how a certificate can be obtained using OpenSSL. Bug: https://github.com/bagder/curl/pull/430 Reported-by: Daniel Hwang
* CURLINFO_ACTIVESOCKET.3: mention it replaces *LASTSOCKETDaniel Stenberg2015-09-121-1/+4
|
* opts: add CURLINFO_* man pages to distDaniel Stenberg2015-09-121-3/+66
|
* opts: 19 more CURLINFO_* options made into stand-alone man pagesDaniel Stenberg2015-09-1219-0/+910
|
* CURLOPT_FNMATCH_FUNCTION.3: fix typoSvyatoslav Mishyn2015-09-111-1/+1
| | | | | | s => is Closes #428
* docs: fix argument type for CURLINFO_SPEED_*, CURLINFO_SIZE_*Svyatoslav Mishyn2015-09-084-4/+4
| | | | long => double
* parse_proxy: reject illegal port numbersDaniel Stenberg2015-09-081-3/+3
| | | | | | | | | | | | | If the port number in the proxy string ended weirdly or the number is too large, skip it. Mostly as a means to bail out early if a "bare" IPv6 numerical address is used without enclosing brackets. Also mention the bracket requirement for IPv6 numerical addresses to the man page for CURLOPT_PROXY. Closes #415 Reported-by: Marcel Raad
* CURLOPT_TLSAUTH_TYPE.3: update descriptionSvyatoslav Mishyn2015-09-061-5/+5
| | | | | Closes #414 Closes #413
* CURLOPT_PATH_AS_IS.3: fix typoSvyatoslav Mishyn2015-09-051-2/+2
| | | | | | leavit => leaveit closes #412
* CURLINFO_SSL_VERIFYRESULT.3: add short descriptionSvyatoslav Mishyn2015-09-051-1/+1
|
* CURLINFO_SSL_ENGINES.3: add short descriptionSvyatoslav Mishyn2015-09-051-1/+1
|
* CURLINFO_CONTENT_LENGTH_UPLOAD.3: replace "receive" with "get" for consistencySvyatoslav Mishyn2015-09-051-1/+1
|
* CURLINFO_REDIRECT_TIME.3: remove redundant '!'Svyatoslav Mishyn2015-09-051-1/+1
|
* CURLOPT_POSTREDIR.3: update RFC number and sectionDaniel Stenberg2015-09-031-8/+8
|
* CURLOPT_FOLLOWLOCATION.3: mention methods for redirectsDaniel Stenberg2015-09-031-9/+16
| | | | and some general cleaning up
* docs: Warn about any-domain cookies and multiple transfersJay Satiro2015-09-033-10/+21
| | | | | | | | | - Warn that cookies without a domain are sent to any domain: CURLOPT_COOKIELIST, CURLOPT_COOKIEFILE, --cookie - Note that imported Set-Cookie cookies without a domain are no longer exported: CURLINFO_COOKIELIST, CURLOPT_COOKIEJAR, --cookie-jar
* opts: 8 more CURLINFO* options as stand-alone man pagesDaniel Stenberg2015-09-028-0/+360
|
* man-pages: more SEE ALSO linksDaniel Stenberg2015-08-312-2/+4
|
* opts: more CURLINFO_* options as stand-alone man pagesDaniel Stenberg2015-08-3110-0/+444
|
* CURLOPT_FILETIME.3: CURLINFO_FILETIME has its own manpage nowJay Satiro2015-08-291-2/+2
|
* CURLINFO_RESPONSE_CODE.3: added short descriptionDaniel Stenberg2015-08-291-1/+1
|
* opts: 7 initial CURLINFO_* options as stand-alone man pagesDaniel Stenberg2015-08-287-0/+322
|
* CURLOPT_DEFAULT_PROTOCOL: addedNathaniel Waisbrot2015-08-223-6/+88
| | | | | | | | | | | | | | | - Add new option CURLOPT_DEFAULT_PROTOCOL to allow specifying a default protocol for schemeless URLs. - Add new tool option --proto-default to expose CURLOPT_DEFAULT_PROTOCOL. In the case of schemeless URLs libcurl will behave in this way: When the option is used libcurl will use the supplied default. When the option is not used, libcurl will follow its usual plan of guessing from the hostname and falling back to 'http'.
* CURLMOPT_PUSHFUNCTION.3: fix argument typesSam Roth2015-08-191-2/+2
| | | | | Closes #389 Closes #386
* docs: Update the redirect protocols disabled by defaultJay Satiro2015-08-183-5/+13
| | | | | | - Clarify that FILE and SCP are disabled by default since 7.19.4 - Add that SMB and SMBS are disabled by default since 7.40.0 - Add CURLPROTO_SMBS to the list of protocols
* CURLOPT_HTTP_VERSION.3: connection re-use goes before versionDaniel Stenberg2015-08-151-3/+7
|
* docs: fix typosAlessandro Ghedini2015-08-122-2/+2
| | | | closes #376
* CURLOPT_RESOLVE.3: Note removal support was added in 7.42Jay Satiro2015-08-091-2/+3
| | | | | Bug: http://curl.haxx.se/mail/lib-2015-08/0019.html Reported-by: Inca R
* SSL: Add an option to disable certificate revocation checksJay Satiro2015-07-171-7/+19
| | | | | | | | | | | | | | New tool option --ssl-no-revoke. New value CURLSSLOPT_NO_REVOKE for CURLOPT_SSL_OPTIONS. Currently this option applies only to WinSSL where we have automatic certificate revocation checking by default. According to the ssl-compared chart there are other backends that have automatic checking (NSS, wolfSSL and DarwinSSL) so we could possibly accommodate them at some later point. Bug: https://github.com/bagder/curl/issues/264 Reported-by: zenden2k <zenden2k@gmail.com>