- Jul 13, 2006
- Jul 12, 2006
-
-
Gisle Vanem authored
-
Yang Tse authored
-
Yang Tse authored
Place parenthesis surrounding macro parameters so that the use of sread and swrite is more intuitive.
-
Yang Tse authored
-
Yang Tse authored
-
- Jul 11, 2006
-
-
Yang Tse authored
-
Dan Fandrich authored
in libcurl as well, if necessary.
-
Gisle Vanem authored
-
Yang Tse authored
-
- Jul 10, 2006
-
-
Yang Tse authored
DNS cache must use the multi DNS cache if the easy handle's one is not using anyone in curl_multi_add_handle.
-
- 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).
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
Gisle Vanem authored
-
Gisle Vanem authored
-
Gisle Vanem authored
effect.
-
Daniel Stenberg authored
-
- Jul 06, 2006
-
-
Gisle Vanem authored
-
Gisle Vanem authored
-
- Jul 05, 2006
-
-
Yang Tse authored
-
Yang Tse authored
Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows headers when compiled with Cygwin in POSIX emulation mode.
-
Gisle Vanem authored
So avoid using x_was_used().
-
Gisle Vanem authored
(Yang Tse forgot about djgpp)
-
- Jul 04, 2006
-
-
Yang Tse authored
-
Yang Tse authored
HAVE_GETNAMEINFO, GETNAMEINFO_QUAL_ARG1, GETNAMEINFO_TYPE_ARG1, GETNAMEINFO_TYPE_ARG2, GETNAMEINFO_TYPE_ARG46, GETNAMEINFO_TYPE_ARG7 HAVE_RECV, RECV_TYPE_ARG1, RECV_TYPE_ARG2, RECV_TYPE_ARG3, RECV_TYPE_ARG4, RECV_TYPE_RETV HAVE_SEND, SEND_TYPE_ARG1, SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4, SEND_TYPE_RETV
-
Daniel Stenberg authored
Proxy-Connection: header when using a proxy and not doing CONNECT.
-
Yang Tse authored
-
- Jul 03, 2006
-
-
Yang Tse authored
-
- Jun 29, 2006
-
-
Daniel Stenberg authored
in fact provided by yassl instead
-
- Jun 28, 2006
- Jun 24, 2006
-
-
Daniel Stenberg authored
to get a better overview
-
Daniel Stenberg authored
-
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.
-