- Apr 08, 2009
-
-
Yang Tse authored
-
- Apr 07, 2009
-
-
Benoit Neil authored
-
Daniel Stenberg authored
-
Benoit Neil authored
Added missing tests in CMake, added Makefile.inc for tests (+ use in CMake scripts), and fixed a missing define under windows in a test source file.
-
Benoit Neil authored
-
Daniel Stenberg authored
-
Benoit Neil authored
-
Benoit Neil authored
-
- Apr 06, 2009
-
-
Benoit Neil authored
-
Daniel Stenberg authored
and 1 on fatal errors. Previously it only mentioned non-zero on fatal errors. This is a slight change in meaning, but it follows what we've done elsewhere before and it opens up for LOTS of more useful return codes whenever we can think of them...
-
Benoit Neil authored
PS: Once again, sorry if the added files have executable perms on Linux.
-
Benoit Neil authored
PS: Sorry if the added file has executable perms on Linux, I didn't found anything related to it...
-
Benoit Neil authored
Removed the "lib" prefix under linux ("was "liblibcurl") and fixed import library name under Win32 (Added "_imp" for dynamically linked).
-
Benoit Neil authored
-
- Apr 03, 2009
-
-
Yang Tse authored
-
- Apr 02, 2009
-
-
Benoit Neil authored
-
Yang Tse authored
non-configured libcurl. In this case curl_off_t data type was gated to the off_t data type which depends on the _FILE_OFFSET_BITS. This configuration is exactly the unwanted configuration for our curl_off_t data type which must not depend on such setting. This breaks ABI for libcurl libraries built with Sun compilers which were built without having run the configure script with _FILE_OFFSET_BITS different than 64 and using the ILP32 data model.
-
Benoit Neil authored
Initial CMake scripts (libcurl only), based on the merge of tetest scripts and mine. These are far to be functionnal yet. PS: Hello world :)
-
Dan Fandrich authored
-
- Apr 01, 2009
-
-
Daniel Stenberg authored
strdup() call failed.
-
- Mar 31, 2009
-
-
Dan Fandrich authored
-
- Mar 29, 2009
-
-
Guenter Knauf authored
-
- Mar 20, 2009
-
-
Daniel Stenberg authored
functions if the easy handles are used in multiple threads
-
Daniel Stenberg authored
-
- Mar 18, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
NSS is used. These ciphers were added in NSS 3.4 and require to be enabled explicitly.
-
Daniel Stenberg authored
-
- Mar 15, 2009
-
-
Gisle Vanem authored
If CURL_DISABLE_PROXY is defined, we must allow socks_sspi.c to call Curl_blockread_all(). It is needed in code inside USE_WINDOWS_SSPI.
-
- Mar 13, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
library is found to support it.
-
- Mar 12, 2009
- Mar 11, 2009
-
-
Daniel Stenberg authored
catch them all. The memory debug stuff is not in the public API anyway.
-
Daniel Stenberg authored
other libcurl function.
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
- Mar 10, 2009
-
-
Daniel Stenberg authored
shipped in release archives but is only in CVS)
-
- Mar 09, 2009
-
-
Daniel Stenberg authored
curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE option. It only enabled the cookie engine in the destination handle if data->cookies is not NULL (where data is the source handle). In case of a newly initialized handle which just had the cookie support enabled by a curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was still NULL because the setopt-call only appends the value to data->change.cookielist, hence duplicating this handle would not have the cookie engine switched on. We also concluded that the slist-functionality would be suitable for being put in its own module rather than simply hanging out in lib/sendf.c so I created lib/slist.[ch] for them.
-