Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-08-13 | Remove first version of comment not intended to be finally committed. | Yang Tse | |
2008-08-13 | The size of long is a build time characteristic and as such it is now recorded | Yang Tse | |
in curlbuild.h as CURL_SIZEOF_LONG. Definition now done from configure process and in CVS curlbuild.h.dist for non-configure systems. | |||
2008-08-13 | Split comparison among several lines for debugging | Yang Tse | |
2008-08-13 | on second thought, let's remove this number from here since it doesn't really | Daniel Stenberg | |
belong among the release numbers anyway | |||
2008-08-13 | dead mirrors removed => http://curl.haxx.se/mail/lib-2008-08/0208.html | Daniel Stenberg | |
2008-08-13 | httpcustomheader.c is a new tiny example showing a HTTP request with a custom | Daniel Stenberg | |
header replacing an internal one | |||
2008-08-13 | Watcom doesn't have <sys/time.h>. | Gisle Vanem | |
2008-08-13 | Remved '-dDEBUG_THREADING_GETADDRINFO' (no longer used). | Gisle Vanem | |
2008-08-13 | Update dependencies. | Gisle Vanem | |
2008-08-13 | Update dependencies. | Gisle Vanem | |
2008-08-13 | MingW uses gcc. Hence the suffixes for 64-bit are 'LL' and 'ULL'. | Gisle Vanem | |
2008-08-13 | Adjustment due to curl_off_t no longer following off_t | Yang Tse | |
2008-08-13 | Added a few user-visible bug fixes | Dan Fandrich | |
2008-08-12 | sync src makefile with lib makefile. | Gunter Knauf | |
2008-08-12 | Removed unneeded header files | Dan Fandrich | |
2008-08-12 | Fixed a buffer overflow problem in Curl_proxyCONNECT that could occur | Dan Fandrich | |
when a server responded with long headers and data. Luckily, the buffer overflowed into another unused buffer, so no actual harm was done. Added test cases 1060 and 1061 to verify. | |||
2008-08-12 | Fix 'result' may be used uninitialized in function readwrite_data() | Yang Tse | |
2008-08-12 | Fix curl_off_t sized constants usage | Yang Tse | |
2008-08-12 | Handle short reads | Dan Fandrich | |
2008-08-12 | DOS/Windows 'shells' eat echoed percent sign characters unless escaped. | Yang Tse | |
2008-08-12 | - Andy Tsouladze fixed runtests.pl to not attempt to execute the stunnel | Daniel Stenberg | |
_directory_ if that happened to appear in the path! | |||
2008-08-12 | Fix CURL_CHECK_DEF_INTXX_C suffix definition detection | Yang Tse | |
2008-08-12 | Added macros for minimum-width signed and unsigned curl_off_t integer | Yang Tse | |
constants CURL_OFF_T_C and CURL_OFF_TU_C. The clever double helper macro used internally to provide its functionality is thanks to Lars Nilsson. | |||
2008-08-11 | Added HTTP CONNECT keywords | Dan Fandrich | |
2008-08-11 | Fixed a boundary condition error in ftp_readresp() whereby a non-terminal | Dan Fandrich | |
line of a multiline FTP response whose last byte landed exactly at the end of the BUFSIZE-length buffer would be treated as the terminal response line. The following response code read in would then actually be the end of the previous response line, and all responses from then on would correspond to the wrong command. Test case 1062 verifies this. Stop closing a never-opened ftp socket. | |||
2008-08-11 | 152 + 153 are fixed! | Daniel Stenberg | |
2008-08-11 | - Constantine Sapuntzakis filed bug report #2042430 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2042430) with a patch. "NTLM Windows SSPI code is not thread safe". This was due to libcurl using static variables to tell wether to load the necessary SSPI DLL, but now the loading has been moved to the more suitable curl_global_init() call. | |||
2008-08-11 | - Constantine Sapuntzakis filed bug report #2042440 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2042440) with a patch. He identified a problem when using NTLM over a proxy but the end-point does Basic, and then libcurl would do wrong when the host sent "Connection: close" as the proxy's NTLM state was erroneously cleared. | |||
2008-08-11 | Ooops | Yang Tse | |
2008-08-11 | Added missing signed and unsigned curl_off_t integer constant suffixes for | Yang Tse | |
internal and external use. CURL_SUFFIX_CURL_OFF_T, CURL_SUFFIX_CURL_OFF_TU. | |||
2008-08-11 | added two known topics for 7.19.1 | Daniel Stenberg | |
2008-08-11 | five more bugs I'd like to get fixed or at least considered before 7.19.0 | Daniel Stenberg | |
2008-08-11 | Old logic based on CURL_SIZEOF_CURL_OFF_T, ENABLE_64BIT, HAVE_LONGLONG, | Yang Tse | |
has to be revisited and adjusted as appropriate. Enabling and disabling of large file support needs further inspection. | |||
2008-08-11 | Fix NetWare missing curl_off_t typedef!! | Yang Tse | |
2008-08-11 | s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g | Yang Tse | |
2008-08-11 | Die when curlbuild.h is not created or available | Yang Tse | |
2008-08-10 | fixed creation of curlbuild.h. | Gunter Knauf | |
2008-08-10 | Fix NetWare curlbuild.h | Yang Tse | |
NetWare curlbuild.h settings depend on whether LIBC or CLIB is used. The NetWare specific Makefile is capable of knowing which target is being built. So, finally, the NetWare Makefile will take care of generating curlbuild.h | |||
2008-08-10 | Fix: Remove now this SIZEOF_CURL_OFF_T symbol definition. | Yang Tse | |
This should have been done with the initial 64-bit curl_off_t patch. | |||
2008-08-09 | When running testcurl.pl display definitions from curlbuild.h | Yang Tse | |
2008-08-09 | Remove debug tracing for DO_CURL_OFF_T_CHECK and CURL_CHECK_DEF | Yang Tse | |
2008-08-09 | Use int64_t in favour of __int64 for curl_off_t when both are available. | Yang Tse | |
2008-08-09 | Improve CURL_CHECK_DEF | Yang Tse | |
2008-08-09 | Fix IBM C and DEC/Compaq C compiler detection | Yang Tse | |
2008-08-09 | Remove some redundancy | Yang Tse | |
2008-08-08 | Refactored Curl_readwrite() into a number of smaller functions. | Dan Fandrich | |
2008-08-08 | Add debug tracing for DO_CURL_OFF_T_CHECK | Yang Tse | |
2008-08-08 | Remove some redundancy | Yang Tse | |
2008-08-08 | Remove potential overquoting | Yang Tse | |
2008-08-08 | Remove rule no longer needed since tests/testcurl.pl revision 1.63 | Yang Tse | |
See CVS commit comment on tests/testcurl.pl revision 1.63 |