- Feb 22, 2007
-
-
Daniel Stenberg authored
there is an environment variable set)
-
- Feb 20, 2007
-
-
Linus Nielsen authored
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour
-
Linus Nielsen authored
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour
-
- Feb 19, 2007
-
-
Daniel Stenberg authored
AC_PATH_PROG was not used properly.
-
Daniel Stenberg authored
5).
-
- Feb 18, 2007
-
-
Daniel Stenberg authored
the multi interface and connection re-use that could make a curl_multi_remove_handle() ruin a pointer in another handle. The second problem was less of an actual problem but more of minor quirk: the re-using of connections wasn't properly checking if the connection was marked for closure.
-
- Feb 14, 2007
-
-
Dan Fandrich authored
-
- Feb 12, 2007
-
-
Daniel Stenberg authored
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/
-
Daniel Stenberg authored
to the debug callback. - Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's internal decoding of content or transfer encoded content. This may be preferable in cases where you use libcurl for proxy purposes or similar. The command line tool got a --raw option to disable both at once.
-
- Feb 11, 2007
-
-
Daniel Stenberg authored
instead focus on explaining on how the libs differ from each other
-
Daniel Stenberg authored
-
- Feb 10, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Feb 05, 2007
-
-
Daniel Stenberg authored
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already.
-
- Feb 03, 2007
-
-
Daniel Stenberg authored
-
- Jan 28, 2007
-
-
Daniel Stenberg authored
-
- Jan 27, 2007
-
-
Daniel Stenberg authored
platforms.
-
- Jan 26, 2007
-
-
Guenter Knauf authored
-
- Jan 25, 2007
-
-
Daniel Stenberg authored
ordinary curl command line, and you will get a libcurl-using source code written to the file that does the equivalent operation of what your command line operation does!
-
- Jan 17, 2007
-
-
Daniel Stenberg authored
-
- Jan 09, 2007
-
-
Daniel Stenberg authored
-
- Jan 08, 2007
-
-
Daniel Stenberg authored
-
- Jan 05, 2007
-
-
Daniel Stenberg authored
curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it will make libcurl shutdown SSL/TLS after the authentication is done on a FTP-SSL operation.
-
- Jan 02, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1603712) (known bug #36) --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but that's when they were introduced as previous to that the limiting logic was made in the application only and not in the library). It was actually also broken on select()-based systems (as apposed to poll()) but we haven't had any such reports. We now use select(), Sleep() or delay() properly to sleep a while without waiting for anything input or output when the rate limiting is activated with the easy interface.
-
- Dec 31, 2006
-
-
Daniel Stenberg authored
-
- Dec 21, 2006
-
-
Daniel Stenberg authored
-
- Dec 19, 2006
-
-
Daniel Stenberg authored
* added mentioning of doing the stunnel equivalent ourselves for the test suite * spell-check
-
Daniel Stenberg authored
authentication (with performs multiple "passes" and authenticates a connection rather than a HTTP request), and particularly when using the multi interface, there's a risk that libcurl will re-use a wrong connection when doing the different passes in the NTLM negotiation and thus fail to negotiate (in seemingly mysterious ways). 36. --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but that's when they were introduced as previous to that the limiting logic was made in the application only and not in the library). This problem is easily repeated and it takes a Windows person to fire up his/hers debugger in order to fix. http://curl.haxx.se/bug/view.cgi?id=1603712
-
- Dec 14, 2006
-
-
Daniel Stenberg authored
-
- Dec 06, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
temporarily higher speeds than requested, but the given limiting is considered "over time" and is an average
-
- Dec 05, 2006
-
-
Daniel Stenberg authored
no code present in the library that receives the option. Since it was not possible to use, we know that no current users exist and thus we simply removed it from the docs and made the code always use the default path of the code.
-
Daniel Stenberg authored
-
- Nov 19, 2006
-
-
Daniel Stenberg authored
-
- Nov 18, 2006
-
-
Daniel Stenberg authored
-
- Nov 08, 2006
-
-
Daniel Stenberg authored
-
- Nov 03, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
KNOWN_BUGS #25, which happens when a proxy closes the connection when libcurl has sent CONNECT, as part of an authentication negotiation. Starting now, libcurl will re-connect accordingly and continue the authentication as it should.
-
Daniel Stenberg authored
-