- May 25, 2006
-
-
Daniel Stenberg authored
fail. When using the md5-sess, the result was not Md5 encoded and Base64 transformed.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
kind of magic
-
- May 24, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
libtool cross-compiled on linux with mingw32
-
Daniel Stenberg authored
CURLOPT_COOKIELIST, which then makes all session cookies get cleared. (slightly edited by me, and the re-indent in cookie.c was also done by me)
-
Daniel Stenberg authored
are not always time_t ones
-
Daniel Stenberg authored
nothing matched fine
-
Daniel Stenberg authored
fine
-
- May 23, 2006
-
-
Daniel Stenberg authored
script to fail on debian unstable (some specific bash version perhaps?)
-
Daniel Stenberg authored
-
- May 15, 2006
-
-
Daniel Stenberg authored
-
- May 14, 2006
-
-
Daniel Stenberg authored
-
- May 11, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
AC_CHECK_HEADERS() and the action-if-found since that action is run even if just one of the six headers is found and I just now fell over a case with a duplicate file name (a krb4 implementation with an err.h file). I converted the check to manually make sure three of the headers are present before considering them fine.
-
Daniel Stenberg authored
2 - store the time it took to verify it and allow that time to be used as %FTPTIME[23] in command lines to allow us to adjust better to slow hosts since test 190 failed on my slow solaris machine just because it hadn't gotten time to run all the way the test assumed all machines would reach before the time-out elapsed.
-
Daniel Stenberg authored
truly use SSL
-
Daniel Stenberg authored
-
- May 10, 2006
-
-
Daniel Stenberg authored
checks on the to-be-returned socket to make sure it truly seems to be alive and well. For SSL connection it (only) uses OpenSSL functions.
-
Daniel Stenberg authored
seconds even when everything is fine! Now we allow a test server 8 seconds to respond to still be considered ok.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
2 - properly escape certain letters within a DICT word to comply to the RFC2229
-
Daniel Stenberg authored
-
Daniel Stenberg authored
things such as C++ compiler actually is a bad thing and since we don't need that detection I added a work-around, much inspired by a previous patch by Paolo Bonzini. This also shortens the configure script quite a lot.
-
- May 09, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
autotools project, which optionally (default=yes) uses libcurl on a system without a (usable) libcurl installation, but not specifying `--without-libcurl', configure determines correctly that no libcurl is available, however, the LIBCURL variable gets expanded to `LIBCURL = -lcurl' in the resulting Makefiles. David Shaw fixed the flaw.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
connects. The state machine was not reset properly so that subsequent connects using the same handle would fail, and there were two memory leaks.
-
Daniel Stenberg authored
multi stack and that easy handle had already been used to do one or more easy interface transfers, as then the code threw away the previously used DNS cache without properly freeing it.
-
- May 08, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
from Curl_client_write
-
Dan Fandrich authored
Fixed handling of retransmitted blocks on transmit Properly aligned data to transmit within packet Replaced calls to strerror() with Curl_strerror()
-
Daniel Stenberg authored
thus works reliably on more platforms.
-
- May 07, 2006
-
-
Daniel Stenberg authored
-
- May 05, 2006
-
-
Daniel Stenberg authored
like this in this source file. The quickfix for now is to provide a simple version for GnuTLS builds. The GnuTLS version of libcurl doesn't yet allow fully non-blocking connects anyway so this function doesn't get used.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- May 04, 2006
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini and David Byron. libcurl previously wrongly used GetLastError() on windows to get error details after socket-related function calls, when it really should use WSAGetLastError() instead. When changing to this, the former function Curl_ourerrno() is now instead called Curl_sockerrno() as it is necessary to only use it to get errno from socket-related functions as otherwise it won't work as intended on Windows.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1480821) He found and identified a problem with how libcurl dealt with GnuTLS and a case where gnutls returned GNUTLS_E_AGAIN indicating it would block. It would then return an unexpected return code, making Curl_ssl_send() confuse the upper layer - causing random 28 bytes trash data to get inserted in the transfered stream. The proper fix was to make the Curl_gtls_send() function return the proper return codes that the callers would expect. The Curl_ossl_send() function already did this.
-