- Aug 07, 2010
-
-
Yang Tse authored
-
U-D5B1PQ1J\Administrador authored
-
Daniel Stenberg authored
In some places where the name 'stream' has been used for naming a function argument that is in fact settable with a setopt() option we now call that argument 'userdata' to make it more obvious that it is in fact possible to set by the application. Suggested by: Jeff Pohlmeyer
-
- Aug 06, 2010
-
-
Guenter Knauf authored
-
Daniel Stenberg authored
-
Yang Tse authored
-
Daniel Stenberg authored
When libcurl internally decided to wait for a 100-continue header, there was no call to the timeout function so there was no timeout callback called when the multi_socket API was used and thus applications became either completely wrong or at least ineffecient depending on how they handled the situation. We now set a timeout to get triggered. Reported by: Ben Darnell Bug: http://curl.haxx.se/bug/view.cgi?id=3039744
-
Guenter Knauf authored
For now removed the .autodepend directive until I've figured out which of my changes broke it again.
-
- Aug 05, 2010
-
-
Yang Tse authored
-
- Aug 04, 2010
-
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
libssh2 1.2.6 and later handle >32bit file sizes properly even on 32bit architectures and we make sure to use that ability. Reported by: Mikael Johansson Bug: http://curl.haxx.se/mail/lib-2010-08/0052.html
-
- Aug 03, 2010
- Aug 02, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
I added all OBJECTPOINT curl_easy_setopt() options from 178 to 202. Left to add: the five FUNCTIONPOINT (callbacks) options added since: SSH_KEYFUNCTION INTERLEAVEFUNCTION CHUNK_BGN_FUNCTION CHUNK_END_FUNCTION FNMATCH_FUNCTION
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Simply because the TCP might be connected already we cannot skip the proxy connect procedure. We need to be careful to not overload more meaning to the bits.tcpconnect field like this. With this fix, SOCKS proxies work again when the multi interface is used. I believe this regression was added with commit 4b351d01, released as 7.20.1. Left todo: add a test case that verifies this functionality that prevents us from breaking it again in the future! Reported by: Robin Cornelius Bug: http://curl.haxx.se/bug/view.cgi?id=3033966
-
Daniel Stenberg authored
This is only to avoid warnings on some systems.
-
Daniel Stenberg authored
There is an implicit conversion from "unsigned long" to "long"; rounding, sign extension, or loss of accuracy may result.
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Aug 01, 2010
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
These defines are only needed for older Watcom versions (< 1280).
-
Daniel Stenberg authored
The --retry logic does retry HTTP when some specific response codes are returned, but because the -f option sets the CURLOPT_FAILONERROR to libcurl, the return codes are different for such situations and then the curl tool failed to consider it for retrying. Reported by: Mike Power Bug: http://curl.haxx.se/bug/view.cgi?id=3037362
-
Daniel Stenberg authored
Commit 496002ea (released in 7.20.1) broke FTPS when using the multi interface and OpenSSL was used. The condition for the non-blocking connect was incorrect. Reported by: Georg Lippitsch Bug: http://curl.haxx.se/mail/lib-2010-07/0270.html
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Jul 31, 2010
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Jul 30, 2010
-
-
Daniel Stenberg authored
conversion from 'size_t' to 'curl_socklen_t', possible loss of data Reported by: Adam Light
-
Daniel Stenberg authored
The SOCKET type in Win64 is 64 bits large (and thus so is curl_socket_t on that platform), and long is only 32 bits. It makes it impossible for curl_easy_getinfo() to return a socket properly with the CURLINFO_LASTSOCKET option as for all other operating systems.
-
Daniel Stenberg authored
Previously the host name buffer was only used if gethostname() exists, but since we converted that into a curl private function that function always exists and will be used so the buffer needs to exist for all cases/systems.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-