- Mar 21, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Ben Greear authored
Error codes were not properly returned to the main curl code (and on to apps using libcurl). tftp was crapping out when tsize == 0 on upload, but I see no reason to fail to upload just because the remote file is zero-length. Ignore tsize option on upload.
-
- Mar 20, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Mar 19, 2010
-
-
Kamil Dudka authored
-
- Mar 18, 2010
-
-
Daniel Stenberg authored
-
Yang Tse authored
another shot at the ftp_init() icc 9.1 optimizer issue
-
- Mar 17, 2010
- Mar 16, 2010
-
-
Dan Fandrich authored
-
- Mar 15, 2010
-
-
Daniel Stenberg authored
The problem mentioned on Dec 10 2009 (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed. Partially because an easy handle can be associated with many connections in the cache (e.g. if there is a redirect during the lifetime of the easy handle). The previous patch only cleaned up the first one. The new fix now removes the easy handle from all connections, not just the first one.
-
- Mar 11, 2010
-
-
Yang Tse authored
fix compiler warning
-
Dan Fandrich authored
-
Dan Fandrich authored
-
Dan Fandrich authored
-
- Mar 10, 2010
-
-
Dan Fandrich authored
-
- Mar 09, 2010
-
-
Yang Tse authored
watt32 compilation fix
-
- Mar 06, 2010
-
-
Daniel Stenberg authored
the easy interface was used.
-
Daniel Stenberg authored
expressions
-
Yang Tse authored
Added another VS10 version string
-
Yang Tse authored
fix line break
-
Yang Tse authored
removed usage of 's6_addr', fixing compilation issue triggered with no longer using 'in6_addr' but only our 'ares_in6_addr' struct
-
- Mar 05, 2010
-
-
Daniel Stenberg authored
-
Yang Tse authored
Added IPv6 name servers support
-
Gisle Vanem authored
-
Gisle Vanem authored
-
Yang Tse authored
Constantine Sapuntzakis detected and fixed a double free in builds done with threaded resolver enabled (Windows default configuration) that would get triggered when a curl handle is closed while doing DNS resolution.
-
Yang Tse authored
Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file
-
- Mar 04, 2010
-
-
Daniel Stenberg authored
CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION more consistent
-
- Mar 02, 2010
-
-
Daniel Stenberg authored
ran into some issues with the GSSAPI tests in configure.ac. The tests first try to determine the include dirs and libs and set CPPFLAGS and LIBS accordingly. It then checks for the headers and finally sets LIBS a second time, causing the libs to be included twice. The first setting of LIBS seems redundant and should be left out, since the first part is otherwise just about finding headers. My second issue is that 'krb5-config --libs gssapi' on Darwin is less than useless and returns junk that, while it happens to work with gcc, causes clang to choke. For example, --libs returns $CFLAGS along with the libs, which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5 -lresolv"' on Darwin is sufficient.
-
Daniel Stenberg authored
makes sure that when using sub-second timeouts, there's no final bad 1000ms wait. Previously, a sub-second timeout would often make the elapsed time end up the time rounded up to the nearest second (e.g. 1s for 200ms timeout)
-
Daniel Stenberg authored
-
Daniel Stenberg authored
CURLOPT_CERTINFO feature leaked memory due to a missing OpenSSL function call. He provided the patch to fix it too. http://curl.haxx.se/bug/view.cgi?id=2956698
-
Daniel Stenberg authored
poll() function it doesn't quite work the way we want it so we must disable it, and he also provided a patch for it. http://curl.haxx.se/bug/view.cgi?id=2961796
-
Daniel Stenberg authored
the global timeout if set. Also, as was reported in the bug report #2956437 by Ryan Chan, the time stamp to use as basis for the per command timeout was not set properly in the DONE phase for FTP (and not for SMTP) so I fixed that just now. This was a regression compared to 7.19.7 due to the conversion of FTP code over to the generic pingpong concepts. http://curl.haxx.se/bug/view.cgi?id=2956437
-
Daniel Stenberg authored
-
- Mar 01, 2010
-
-
Daniel Stenberg authored
-