- Aug 22, 2006
-
-
Daniel Stenberg authored
code when doing pure ipv6 EPRT connections.
-
- Aug 19, 2006
-
-
Daniel Stenberg authored
command on subsequent requests on a re-used connection unless it has to.
-
- Aug 18, 2006
-
-
Daniel Stenberg authored
files in the root directory.
-
Daniel Stenberg authored
send the whole request at once, even though the Expect: header was disabled by the application. An effect of this change is also that small (< 1024 bytes) POSTs are now always sent without Expect: header since we deem it more costly to bother about that than the risk that we send the data in vain.
-
- 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.
-
Daniel Stenberg authored
on a persistent connection and allowed the first to use that header, you could not disable it for the second request.
-
- Aug 07, 2006
-
-
Daniel Stenberg authored
-
- Aug 02, 2006
-
-
Daniel Stenberg authored
if the header "Transfer-Encoding: chunked" was set by the application. http://curl.haxx.se/bug/view.cgi?id=1531838
-
- Aug 01, 2006
-
-
Daniel Stenberg authored
an unknown error number on glibc systems. http://curl.haxx.se/bug/view.cgi?id=1532289
-
- Jul 30, 2006
-
-
Daniel Stenberg authored
both now provide the number of running handles back to the calling function.
-
- Jul 27, 2006
-
-
Daniel Stenberg authored
formposts work exactly the way you want it (and the way you'd assume it works)
-
- Jul 26, 2006
-
-
Daniel Stenberg authored
control and data connection, as the existing --ftp-ssl option only requests it.
-
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.
-
Daniel Stenberg authored
newer MSVC versions)
-
Daniel Stenberg authored
-
- Jul 20, 2006
-
-
Daniel Stenberg authored
problem added with the curl_formget() patch.
-
- Jul 17, 2006
-
-
Daniel Stenberg authored
we did wrong and patched it: When nodes were removed from the splay tree, and we didn't properly remove it from the splay tree when an easy handle was removed from a multi stack and thus we could wrongly leave a node in the splay tree pointing to (bad) memory.
-
- Jul 14, 2006
-
-
Daniel Stenberg authored
for FTP ASCII transfers.
-
- Jul 08, 2006
-
-
Daniel Stenberg authored
string comparisons on the path which is incorrect and provided a patch that fixes this. I edited test case 8 to include details that test for this.
-
- Jul 07, 2006
-
-
Daniel Stenberg authored
the crash was that libcurl internally was a bit confused about who owned the DNS cache at all times so if you created an easy handle that uses a shared DNS cache and added that to a multi handle it would crash. Now we keep more careful internal track of exactly what kind of DNS cache each easy handle uses: None, Private (allocated for and used only by this single handle), Shared (points to a cache held by a shared object), Global (points to the global cache) or Multi (points to the cache within the multi handle that is automatically shared between all easy handles that are added with private caches).
-
- Jul 04, 2006
-
-
Daniel Stenberg authored
Proxy-Connection: header when using a proxy and not doing CONNECT.
-
- Jun 24, 2006
-
-
Daniel Stenberg authored
(serialise) a previously built formpost (as with curl_formadd()).
-
- Jun 23, 2006
-
-
Daniel Stenberg authored
curl_socket_t is unsigned (like Windows) that could cause it to wrongly return a max fd of -1.
-
- Jun 22, 2006
-
-
Daniel Stenberg authored
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed to send or receive data. This kind of adds the the command line tool's option --limit-rate to the library. The rate limiting logic in the curl app is now removed and is instead provided by libcurl itself. Transfer rate limiting will now also work for -d and -F, which it didn't before.
-
- Jun 19, 2006
-
-
Daniel Stenberg authored
-
- Jun 12, 2006
-
-
Daniel Stenberg authored
-
- Jun 08, 2006
-
-
Daniel Stenberg authored
-
- Jun 07, 2006
-
-
Daniel Stenberg authored
-
- May 26, 2006
-
-
Daniel Stenberg authored
-
- May 25, 2006
-
-
Daniel Stenberg authored
fail. When using the md5-sess, the result was not Md5 encoded and Base64 transformed.
-
- May 24, 2006
-
-
Daniel Stenberg authored
-
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)
-
- 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
2 - properly escape certain letters within a DICT word to comply to the RFC2229
-
- May 09, 2006
-
-
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
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
thus works reliably on more platforms.
-
- 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.
-