Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-06 | CURLOPT_TLSAUTH_TYPE.3: update description | Svyatoslav Mishyn | |
Closes #414 Closes #413 | |||
2015-09-05 | CURLOPT_PATH_AS_IS.3: fix typo | Svyatoslav Mishyn | |
leavit => leaveit closes #412 | |||
2015-09-05 | CURLINFO_SSL_VERIFYRESULT.3: add short description | Svyatoslav Mishyn | |
2015-09-05 | CURLINFO_SSL_ENGINES.3: add short description | Svyatoslav Mishyn | |
2015-09-05 | CURLINFO_CONTENT_LENGTH_UPLOAD.3: replace "receive" with "get" for consistency | Svyatoslav Mishyn | |
2015-09-05 | CURLINFO_REDIRECT_TIME.3: remove redundant '!' | Svyatoslav Mishyn | |
2015-09-03 | CURLOPT_POSTREDIR.3: update RFC number and section | Daniel Stenberg | |
2015-09-03 | CURLOPT_FOLLOWLOCATION.3: mention methods for redirects | Daniel Stenberg | |
and some general cleaning up | |||
2015-09-03 | docs: Warn about any-domain cookies and multiple transfers | Jay Satiro | |
- 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 | |||
2015-09-02 | opts: 8 more CURLINFO* options as stand-alone man pages | Daniel Stenberg | |
2015-08-31 | man-pages: more SEE ALSO links | Daniel Stenberg | |
2015-08-31 | opts: more CURLINFO_* options as stand-alone man pages | Daniel Stenberg | |
2015-08-29 | CURLOPT_FILETIME.3: CURLINFO_FILETIME has its own manpage now | Jay Satiro | |
2015-08-29 | CURLINFO_RESPONSE_CODE.3: added short description | Daniel Stenberg | |
2015-08-28 | opts: 7 initial CURLINFO_* options as stand-alone man pages | Daniel Stenberg | |
2015-08-22 | CURLOPT_DEFAULT_PROTOCOL: added | Nathaniel Waisbrot | |
- 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'. | |||
2015-08-19 | CURLMOPT_PUSHFUNCTION.3: fix argument types | Sam Roth | |
Closes #389 Closes #386 | |||
2015-08-18 | docs: Update the redirect protocols disabled by default | Jay Satiro | |
- 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 | |||
2015-08-15 | CURLOPT_HTTP_VERSION.3: connection re-use goes before version | Daniel Stenberg | |
2015-08-12 | docs: fix typos | Alessandro Ghedini | |
closes #376 | |||
2015-08-09 | CURLOPT_RESOLVE.3: Note removal support was added in 7.42 | Jay Satiro | |
Bug: http://curl.haxx.se/mail/lib-2015-08/0019.html Reported-by: Inca R | |||
2015-07-17 | SSL: Add an option to disable certificate revocation checks | Jay Satiro | |
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> | |||
2015-07-01 | SSL: Pinned public key hash support | moparisthebest | |
2015-06-24 | CURLOPT_FAILONERROR.3: mention that it closes the connection | Daniel Stenberg | |
Reported-by: bemoody Bug: https://github.com/bagder/curl/issues/325 | |||
2015-06-24 | CURLMOPT_PUSHFUNCTION.3: Remove unused variable | Tatsuhiro Tsujikawa | |
2015-06-24 | CURLMOPT_PUSHFUNCTION.3: added example | Daniel Stenberg | |
2015-06-24 | http2: curl_pushheader_byname now takes a const char * | Daniel Stenberg | |
2015-06-24 | http2: fixed the header accessor functions for the push callback | Daniel Stenberg | |
2015-06-24 | http2: initial implementation of the push callback | Daniel Stenberg | |
2015-06-24 | http2: initial HTTP/2 server push types/docs | Daniel Stenberg | |
2015-06-17 | CURLOPT_ERRORBUFFER.3: Fix example, escape backslashes | Jay Satiro | |
2015-06-17 | CURLOPT_ERRORBUFFER.3: Improve example | Jay Satiro | |
2015-06-08 | docs: Spelling fixes | Ville Skyttä | |
2015-06-03 | cookie: Stop exporting any-domain cookies | Jay Satiro | |
Prior to this change any-domain cookies (cookies without a domain that are sent to any domain) were exported with domain name "unknown". Bug: https://github.com/bagder/curl/issues/292 | |||
2015-05-25 | CURLOPT_COOKIELIST.3: Explain Set-Cookie without a domain | Jay Satiro | |
Document that if Set-Cookie is used without a domain then the cookie is sent for any domain and will not be modified. Bug: http://curl.haxx.se/mail/lib-2015-05/0137.html Reported-by: Alexander Dyagilev | |||
2015-05-24 | CURLOPT_COOKIE.3: Explain that the cookies won't be modified | Jay Satiro | |
The CURLOPT_COOKIE doc says it "sets the cookie header explicitly in the outgoing request(s)." However there seems to be some user confusion about cookie modification. Document that the cookies set by this option are not modified by the cookie engine. Bug: http://curl.haxx.se/mail/lib-2015-05/0115.html Reported-by: Alexander Dyagilev | |||
2015-05-24 | CURLOPT_COOKIELIST.3: Add example | Jay Satiro | |
2015-05-21 | CURLOPT_HTTPPROXYTUNNEL.3: only works with a HTTP proxy! | Daniel Stenberg | |
2015-05-20 | CURLOPT_POSTFIELDS.3: Mention curl_easy_escape | Jay Satiro | |
.. also correct some variable naming in curl_easy_escape.3 Bug: https://github.com/bagder/curl/issues/281 Reported-by: bsammon@users.noreply.github.com | |||
2015-05-18 | CURLOPT_PIPEWAIT: added | Daniel Stenberg | |
By setting this option to 1 libcurl will wait for a connection to reveal if it is possible to pipeline/multiplex on before it continues. | |||
2015-05-18 | CURLMOPT_PIPELINE: bit 1 is for multiplexing | Daniel Stenberg | |
2015-05-12 | CURLMOPT_MAX_HOST_CONNECTIONS: host = host name + port number | Daniel Stenberg | |
2015-05-08 | opts: improved the TCP keepalive examples | Egon Eckert | |
2015-04-28 | CURLOPT_HEADEROPT: default to separate | Daniel Stenberg | |
Make the HTTP headers separated by default for improved security and reduced risk for information leakage. Bug: http://curl.haxx.se/docs/adv_20150429.html Reported-by: Yehezkel Horowitz, Oren Souroujon | |||
2015-04-28 | docs/libcurl: Corrected a typo in the CURLOPT_PROXY_SERVICE_NAME documentation | Linus Nielsen | |
2015-04-28 | dist: ship CURLOPT_PROXY_SERVICE_NAME and CURLOPT_SERVICE_NAME | Daniel Stenberg | |
2015-04-28 | Negotiate: custom service names for SPNEGO. | Linus Nielsen | |
* Add new options, CURLOPT_PROXY_SERVICE_NAME and CURLOPT_SERVICE_NAME. * Add new curl options, --proxy-service-name and --service-name. | |||
2015-04-22 | cyassl: Implement public key pinning | Jay Satiro | |
Also add public key extraction example to CURLOPT_PINNEDPUBLICKEY doc. | |||
2015-04-22 | docs: distribute the CURLOPT_PINNEDPUBLICKEY(3) man page, too | Kamil Dudka | |
2015-04-22 | nss: implement public key pinning for NSS backend | Kamil Dudka | |
Bug: https://bugzilla.redhat.com/1195771 |