- Mar 22, 2012
-
-
Daniel Stenberg authored
-
- Mar 10, 2012
-
-
Armel Asselin authored
-
- Mar 05, 2012
-
-
Daniel Stenberg authored
-
- Feb 25, 2012
-
-
Daniel Stenberg authored
Correct some inconsistencies in which version some things were added. Bug: http://curl.haxx.se/bug/view.cgi?id=3494091 Reported by: "curlybugs"
-
- Feb 23, 2012
-
-
Steve Holme authored
Set the conn->data->info.httpcode variable in smtp_statemach_act() to allow Curl_getinfo() to return the SMTP response code via the CURLINFO_RESPONSE_CODE action.
-
Daniel Stenberg authored
With Colin Hogben's recent work, --libcurl now also works with -F and more. Remove the previous caveat.
-
- Feb 21, 2012
-
-
Daniel Stenberg authored
Brought in commit 0cf0ab6f
-
- Feb 17, 2012
-
-
Daniel Stenberg authored
Make sure it is mentioned once and with the correct description
-
- Feb 16, 2012
-
-
Daniel Stenberg authored
-
Kamil Dudka authored
-
- Feb 15, 2012
-
-
Steve Holme authored
Added information relating to the new CURLOPT_MAIL_AUTH parameter and reworked CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT to be a clearer. Fixed inconsistencies of "vocalisation of the abbreviation" versus "vocalisation of the first word" for all abbreviations. Corrected a typo in CURLOPT_NOPROXY.
-
- Feb 14, 2012
-
-
toddouska authored
Modify configure.ac to test for new CyaSSL Init function and remove default install path to system. Change to CyaSSL OpenSSL header and proper Init in code as well. Note that this no longer detects or works with CyaSSL before v2
-
- Feb 13, 2012
-
-
Daniel Stenberg authored
We will go straight to 7.25.0 due to the new additions
-
- Feb 09, 2012
-
-
Daniel Stenberg authored
This new option tells curl to not work around a security flaw in the SSL3 and TLS1.0 protocols. It uses the new libcurl option CURLOPT_SSL_OPTIONS with the CURLSSLOPT_ALLOW_BEAST bit set.
-
Daniel Stenberg authored
Allow an appliction to set libcurl specific SSL options. The first and only options supported right now is CURLSSLOPT_ALLOW_BEAST. It will make libcurl to disable any work-arounds the underlying SSL library may have to address a known security flaw in the SSL3 and TLS1.0 protocol versions. This is a reaction to us unconditionally removing that behavior after this security advisory: http://curl.haxx.se/docs/adv_20120124B.html ... it did however cause a lot of programs to fail because of old servers not liking this work-around. Now programs can opt to decrease the security in order to interoperate with old servers better.
-
Dave Reisner authored
Use the new library CURLOPT_TCP_KEEPALIVE rather than disabling this via the sockopt callback. If --keepalive-time is used, apply the value to CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL.
-
Dave Reisner authored
This adds three new options to control the behavior of TCP keepalives: - CURLOPT_TCP_KEEPALIVE: enable/disable probes - CURLOPT_TCP_KEEPIDLE: idle time before sending first probe - CURLOPT_TCP_KEEPINTVL: delay between successive probes While not all operating systems support the TCP_KEEPIDLE and TCP_KEEPINTVL knobs, the library will still allow these options to be set by clients, silently ignoring the values.
-
- Jan 25, 2012
-
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
- Jan 21, 2012
-
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
- Jan 19, 2012
-
-
Daniel Stenberg authored
As is pointed out in this bug report, there can indeed be situation where --stderr has a point even when the "real" stderr can be redirected. Remove the superfluous and wrong comment. bug: http://curl.haxx.se/bug/view.cgi?id=3476020
-
- Jan 18, 2012
-
-
- Jan 16, 2012
-
-
Daniel Stenberg authored
Just showing how to download the contents of a given URL into a local file. Based on a suggestion and example code by Georg Potthast
-
Daniel Stenberg authored
Just to show that IMAP is used just like other protocols
-
- Jan 04, 2012
-
-
Peter Sylvester authored
With this change, curl compiles with the new OPENSSL_NO_SSL_INTERN cflag. This flag might become the default in some distant future.
-
Daniel Stenberg authored
-
- Jan 03, 2012
-
-
Daniel Stenberg authored
-
- Jan 02, 2012
-
-
Daniel Stenberg authored
-
- Dec 30, 2011
-
-
Alessandro Ghedini authored
-
Alessandro Ghedini authored
These examples show how to fetch a single message (RETR command) and how to list all the messages in a given mailbox (LIST command), with authentication via SSL. They were both based on the https.c example.
-
Yang Tse authored
-
Yang Tse authored
-
- Dec 23, 2011
-
-
Colin Hogben authored
The INTERNALS document suggested that compatibility should be maintained with perl version 4, but this was untrue - scripts such as chksource.pl and runtests.pl use perl5-isms.
-
- Dec 21, 2011
-
-
Daniel Stenberg authored
-
- Dec 20, 2011
-
-
Daniel Stenberg authored
It is no longer done blocking in the multi interface
-
Daniel Stenberg authored
-
Daniel Stenberg authored
It did a long time ago
-
Daniel Stenberg authored
-
Gokhan Sengun authored
1- Two new error codes are introduced. CURLE_FTP_ACCEPT_FAILED to be set whenever ACCEPTing fails because of FTP server connected. CURLE_FTP_ACCEPT_TIMEOUT to be set whenever ACCEPTing timeouts. Neither of these errors are considered fatal and control connection remains OK because it could just be a firewall blocking server to connect to the client. 2- One new setopt option was introduced. CURLOPT_ACCEPTTIMEOUT_MS It sets the maximum amount of time FTP client is going to wait for a server to connect. Internal default accept timeout is 60 seconds.
-