- 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.
-
Bernhard Reutner-Fischer authored
Parameters were underquoted, resulting in warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-
Daniel Stenberg authored
The CURLM_CALL_MULTI_PERFORM reference is an old leftover I had to remove. I also added some blurb to the previously blank "sharing" section.
-
- Dec 19, 2011
-
-
Daniel Stenberg authored
-
Alessandro Ghedini authored
Document the possibility of providing multiple values using the ":" separator, and the fact that the default value will be ignored if the option is used.
-
Steve Holme authored
-
- Dec 15, 2011
-
-
Colin Hogben authored
The default content-type for file uploads is application/octet-stream, not text/plain as stated in the MANUAL.
-
Alessandro Ghedini authored
-
- Dec 12, 2011
-
-
Jason Glasgow authored
Do not try to resolve interfaces names via DNS by recognizing interface names in a few ways. If the interface option argument has a prefix of "if!" then treat the argument as only an interface. Similarly, if the interface argument is the name of an interface (even if it does not have an IP address assigned), treat it as an interface name. Finally, if the interface argument is prefixed by "host!" treat it as a hostname that must be resolved by /etc/hosts or DNS. These changes allow a client using the multi interfaces to avoid blocking on name resolution if the interface loses its IP address or disappears.
-
- Dec 07, 2011
-
-
Daniel Stenberg authored
-
Dan Fandrich authored
This improves portability of the examples. This patch was submitted to the OpenBSD ports collection by naddy.
-
- Dec 05, 2011
-
-
Daniel Stenberg authored
If the option is set to 0, the default timeout will be used - which in modern libcurl versions equals 300 seconds (== 5 minutes). Bug: http://curl.haxx.se/mail/lib-2011-12/0051.html Reported by: Vladimir Grishchenko
-
Rob Ward authored
Adds a timer based off of CURLINFO_TOTAL_TIME that is used to perform certain actions after a minimum amount of time has passed using the progress function. As a consequence the curl handle is now also passed into the progress function. Progress example now also includes an example of how to retreive the TOTAL_TIME and print it out.
-
Daniel Stenberg authored
When the new socket is created for an active connection, it is now done using the open socket callback. Test case 596 was modified to run fine, although it hides the fact that the close callback is still called too many times, as it also gets called for closing sockets that were created with accept().
-
- Nov 24, 2011
-
-
Daniel Stenberg authored
Experience has shown that the symbols-in-versions file is very useful to applications that want to build with a wide range of libcurl versions. It is however easy to get it wrong and the source gets a bit messy with all the fixed numerical comparisions. The point of this script is to provide an easy-to-use macro for libcurl- using applications to do preprocessor checks for specific libcurl defines, and yet make the code clearly show what the macro is used for.
-
- Nov 18, 2011
-
-
Daniel Stenberg authored
-
Jonas Schnelli authored
prefixing a command with '*' means it is allowed to fail without aborting the chain actions
-
- Nov 17, 2011
-
-
Daniel Stenberg authored
-