- 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
-
- Feb 19, 2007
-
-
Daniel Stenberg authored
AC_PATH_PROG was not used properly.
-
- 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 10, 2007
-
-
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 17, 2007
-
-
Daniel Stenberg authored
-
- Jan 09, 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.
-
- Dec 31, 2006
-
-
Daniel Stenberg authored
-
- Dec 21, 2006
-
-
Daniel Stenberg authored
-
- 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.
-
- Nov 02, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Oct 25, 2006
-
-
Daniel Stenberg authored
case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change.
-
- Oct 21, 2006
-
-
Daniel Stenberg authored
reading the (local) CA cert file to let users easier pinpoint the actual problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code.
-
- Oct 12, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
to a multi stack will cause CURLM_BAD_EASY_HANDLE to get returned.
-
Daniel Stenberg authored
and while doing so it became apparent that the current timeout system for the socket API really was a bit awkward since it become quite some work to be sure we have the correct timeout set. Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another callback the app can set to get to know when the general timeout time changes and thus for an application like hiperfifo.c it makes everything a lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in good old libcurl tradition.
-
- Oct 08, 2006
-
-
Daniel Stenberg authored
-
- Sep 30, 2006
-
-
Daniel Stenberg authored
-
- Sep 27, 2006
-
-
Daniel Stenberg authored
-
- Sep 26, 2006
-
-
Daniel Stenberg authored
-
- Sep 21, 2006
-
-
Daniel Stenberg authored
-
- Sep 11, 2006
-
-
Daniel Stenberg authored
handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL session-ID re-use on demand since there obviously are broken servers out there that misbehave with session-IDs used.
-
- Sep 08, 2006
-
-
Daniel Stenberg authored
-
- Sep 07, 2006
-
-
Daniel Stenberg authored
cache within the multi handle.
-
- Sep 03, 2006
-
-
Daniel Stenberg authored
them.
-
- Aug 29, 2006
-
-
Daniel Stenberg authored
allow applications to set their own socket options.
-
- Aug 23, 2006
-
-
Daniel Stenberg authored
-
- Aug 09, 2006
-
-
Daniel Stenberg authored
-
- Aug 08, 2006
-
-
Daniel Stenberg authored
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place in the command sequence as it would have run if there would've been a transfer.
-
- Aug 02, 2006
-
-
Daniel Stenberg authored
-
- Aug 01, 2006
-
-
Daniel Stenberg authored
-
- Jul 26, 2006
-
-
Daniel Stenberg authored
set a private pointer added to the internal libcurl hash table for the particular socket passed in to this function.
-
- Jul 25, 2006
-
-
Daniel Stenberg authored
tool option named --ftp-alternative-to-user. It provides a mean to send a particular command if the normal USER/PASS approach fails.
-
- Jul 07, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-