Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-19 | start over on our journey towards 7.19.4... | Daniel Stenberg | |
2009-01-19 | time to release | Daniel Stenberg | |
2009-01-18 | fopen() returns error in 'errno' even on Windows. | Gisle Vanem | |
So don't use ERRNO (GetLastError()). Trimmed trailing blanks. | |||
2009-01-18 | Constified some arguments in local functions. | Gisle Vanem | |
2009-01-17 | fixed global copyright. | Gunter Knauf | |
2009-01-16 | - Andrew de los Reyes fixed curlbuild.h for "generic" gcc builds on PPC, both | Daniel Stenberg | |
32 bit and 64 bit. | |||
2009-01-15 | Add steps needed for zlib support under Minix | Dan Fandrich | |
2009-01-15 | - Tim Ansell fixed a compiler warning in lib/cookie.c | Daniel Stenberg | |
2009-01-14 | a bunch of minor updates | Daniel Stenberg | |
2009-01-14 | - ares.h no longer uses the HAVE_STRUCT_IN6_ADDR define check, but instead it | Daniel Stenberg | |
now declares the private struct ares_in6_addr for all systems instead of relying on one possibly not present in the system. | |||
2009-01-13 | 213 - bug #2501457 "Timeouts not working with curl_multi_socket_action()" - | Daniel Stenberg | |
now put in KNOWN_BUGS as entry #62 | |||
2009-01-13 | 62. CURLOPT_TIMEOUT does not work properly with the regular multi and | Daniel Stenberg | |
multi_socket interfaces. The work-around for apps is to simply remove the easy handle once the time is up. See also: http://curl.haxx.se/bug/view.cgi?id=2501457 | |||
2009-01-13 | Karl Moerder removed wsock32.lib from the vc9 makefiles | Daniel Stenberg | |
2009-01-13 | Grant Erickson fixed timeouts for TFTP | Daniel Stenberg | |
2009-01-13 | - Michael Wallner fixed a NULL pointer deref when calling | Daniel Stenberg | |
curl_easy_setup(curl, CURLOPT_COOKIELIST, "SESS") on a CURL handle with no cookies data. | |||
2009-01-13 | Stefan Teleman's curlbuild.h fix for SunPro compilers | Daniel Stenberg | |
2009-01-13 | oops, the previous wasn't meant to get committed but since I did it I thought | Daniel Stenberg | |
I'd just as well enumerate the remainder and commit a "proper" looking one | |||
2009-01-13 | - Stefan Teleman brought a patch to fix the default curlbuild.h file for the | Daniel Stenberg | |
SunPro compilers. | |||
2009-01-13 | - ares__send_query() now varies the retry timeout pseudo-randomly to avoid | Phil Blundell | |
packet storms when several queries were started at the same time. | |||
2009-01-13 | spell-checked a bunch of comments | Daniel Stenberg | |
2009-01-12 | make this example not only replace an internal header but also add a totally | Daniel Stenberg | |
new and non-standard one | |||
2009-01-12 | Mohun Biswas clarified | Daniel Stenberg | |
2009-01-11 | bump year | Daniel Stenberg | |
2009-01-11 | changed the wording to possibly make some sense | Daniel Stenberg | |
2009-01-11 | - Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665) | Daniel Stenberg | |
by Daniel Black, I've now added magic to the configure script that makes it use pkg-config to detect gnutls details as well if the existing method (using libgnutls-config) fails. While doing this, I cleaned up and unified the pkg-config usage when detecting openssl and nss as well. | |||
2009-01-11 | credit Karl Moerder properly | Daniel Stenberg | |
2009-01-11 | - Phil Blundell added the internal function ares__expand_name_for_response() | Daniel Stenberg | |
that is now used by the ares_parse_*_reply() functions instead of the ares_expand_name() simply to easier return ARES_EBADRESP for the cases where the name expansion fails as in responses that really isn't expected. | |||
2009-01-11 | - Karl M brought the patch that creates vc9 Makefiles, and I made 'maketgz' | Daniel Stenberg | |
now use the actual makefile targets to do the VC8 and VC9 makefiles. | |||
2009-01-10 | - Emil Romanus fixed: | Daniel Stenberg | |
When using the multi interface over HTTP and the server returns a Location header, the running easy handle will get stuck in the CURLM_STATE_PERFORM state, leaving the external event loop stuck waiting for data from the ingoing socket (when using the curl_multi_socket_action stuff). While this bug was pretty hard to find, it seems to require only a one-line fix. The break statement on line 1374 in multi.c caused the function to skip the call to multistate(). How to reproduce this bug? Well, that's another question. evhiperfifo.c in the examples directory chokes on this bug only _sometimes_, probably depending on how fast the URLs are added. One way of testing the bug out is writing to hiper.fifo from more than one source at the same time. | |||
2009-01-08 | Only care about the first line of libtool --version as otherwise this script | Daniel Stenberg | |
get fooled by libtool 2, and at least libtool 1.5.2x do output the interesting version string in the first line. | |||
2009-01-08 | "204 - Rob C's NSS fix" is done and since we enter feature freeze now I moved | Daniel Stenberg | |
the remaining three issues to next release since they are about new things and not just fixing bugs | |||
2009-01-08 | Added a few more issues | Dan Fandrich | |
2009-01-08 | Unified much of the SessionHandle initialization done in Curl_open() and | Dan Fandrich | |
curl_easy_reset() by creating Curl_init_userdefined(). This had the side effect of fixing curl_easy_reset() so it now also resets CURLOPT_FTP_FILEMETHOD and CURLOPT_SSL_SESSIONID_CACHE | |||
2009-01-07 | Always use nocheck="yes" for consistency | Dan Fandrich | |
2009-01-07 | Created a CURLMIN macro to match CURLMAX | Dan Fandrich | |
2009-01-07 | fix compiler warnings | Daniel Stenberg | |
2009-01-07 | - Rob Crittenden did once again provide an NSS update: | Daniel Stenberg | |
I have to jump through a few hoops now with the NSS library initialization since another part of an application may have already initialized NSS by the time Curl gets invoked. This patch is more careful to only shutdown the NSS library if Curl did the initialization. It also adds in a bit of code to set the default ciphers if the app that call NSS_Init* did not call NSS_SetDomesticPolicy() or set specific ciphers. One might argue that this lets other application developers get lazy and/or they aren't using the NSS API correctly, and you'd be right. But still, this will avoid terribly difficult-to-trace crashes and is generally helpful. | |||
2009-01-06 | four fresh items to deal with! | Daniel Stenberg | |
2009-01-01 | - 'reconf' is removed since we rather have users use 'buildconf' | Daniel Stenberg | |
2008-12-31 | credit Bas | Daniel Stenberg | |
2008-12-31 | - Bas Mevissen reported http://curl.haxx.se/bug/view.cgi?id=2479030 pointing | Daniel Stenberg | |
out that 'reconf' didn't properly point out the m4 subdirectory when running aclocal. | |||
2008-12-30 | sync'd address with other tests. | Gunter Knauf | |
2008-12-30 | trial with an address which has a valid domain part but invalid host to ↵ | Gunter Knauf | |
avoid dns redirections. | |||
2008-12-30 | added HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID to ares Makefile.netware and sync'd ↵ | Gunter Knauf | |
with other Makefile.netware. | |||
2008-12-30 | changed HAVE_SIN6_SCOPE_ID define to HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID since ↵ | Gunter Knauf | |
just found that ares already uses this define. | |||
2008-12-30 | added HAVE_SIN6_SCOPE_ID define to all non-configure platforms which seem to ↵ | Gunter Knauf | |
be IPv6-aware. | |||
2008-12-29 | - Phil Lisiecki filed bug report #2413067 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that would cause libcurl to mark a DNS cache entry "in use" eternally if the subsequence TCP connect failed. It would thus never get pruned and refreshed as it should've been. | |||
2008-12-29 | further clarifcation based on input from Anthony Bryan | Daniel Stenberg | |
2008-12-28 | - Peter Korsgaard fixed building libcurl with "configure --with-ssl | Daniel Stenberg | |
--disable-verbose". | |||
2008-12-28 | Anthony Bryan's man page cleanup in language and spelling | Daniel Stenberg | |