aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-08-13Update dependencies.Gisle Vanem
2008-08-13Update dependencies.Gisle Vanem
2008-08-13MingW uses gcc. Hence the suffixes for 64-bit are 'LL' and 'ULL'.Gisle Vanem
2008-08-13Adjustment due to curl_off_t no longer following off_tYang Tse
2008-08-13Added a few user-visible bug fixesDan Fandrich
2008-08-12sync src makefile with lib makefile.Gunter Knauf
2008-08-12Removed unneeded header filesDan Fandrich
2008-08-12Fixed a buffer overflow problem in Curl_proxyCONNECT that could occurDan 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-12Fix 'result' may be used uninitialized in function readwrite_data()Yang Tse
2008-08-12Fix curl_off_t sized constants usageYang Tse
2008-08-12Handle short readsDan Fandrich
2008-08-12DOS/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 stunnelDaniel Stenberg
_directory_ if that happened to appear in the path!
2008-08-12Fix CURL_CHECK_DEF_INTXX_C suffix definition detectionYang Tse
2008-08-12Added macros for minimum-width signed and unsigned curl_off_t integerYang 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-11Added HTTP CONNECT keywordsDan Fandrich
2008-08-11Fixed a boundary condition error in ftp_readresp() whereby a non-terminalDan 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-11152 + 153 are fixed!Daniel Stenberg
2008-08-11- Constantine Sapuntzakis filed bug report #2042430Daniel 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 #2042440Daniel 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-11OoopsYang Tse
2008-08-11Added missing signed and unsigned curl_off_t integer constant suffixes forYang Tse
internal and external use. CURL_SUFFIX_CURL_OFF_T, CURL_SUFFIX_CURL_OFF_TU.
2008-08-11added two known topics for 7.19.1Daniel Stenberg
2008-08-11five more bugs I'd like to get fixed or at least considered before 7.19.0Daniel Stenberg
2008-08-11Old 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-11Fix NetWare missing curl_off_t typedef!!Yang Tse
2008-08-11 s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/gYang Tse
2008-08-11Die when curlbuild.h is not created or availableYang Tse
2008-08-10fixed creation of curlbuild.h.Gunter Knauf
2008-08-10Fix NetWare curlbuild.hYang 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-10Fix: 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-09When running testcurl.pl display definitions from curlbuild.hYang Tse
2008-08-09Remove debug tracing for DO_CURL_OFF_T_CHECK and CURL_CHECK_DEFYang Tse
2008-08-09Use int64_t in favour of __int64 for curl_off_t when both are available.Yang Tse
2008-08-09Improve CURL_CHECK_DEFYang Tse
2008-08-09Fix IBM C and DEC/Compaq C compiler detectionYang Tse
2008-08-09Remove some redundancyYang Tse
2008-08-08Refactored Curl_readwrite() into a number of smaller functions.Dan Fandrich
2008-08-08Add debug tracing for DO_CURL_OFF_T_CHECKYang Tse
2008-08-08Remove some redundancyYang Tse
2008-08-08Remove potential overquotingYang Tse
2008-08-08Remove rule no longer needed since tests/testcurl.pl revision 1.63Yang Tse
See CVS commit comment on tests/testcurl.pl revision 1.63
2008-08-08Reintroduce the adjustment previously done in testcurl.pl so that it copies theYang Tse
CVS checked out curlbuild.h.dist as curlbuild.h for any non-configure target when host system is not running buildconf.bat. All the curlbuild.h stuff was done taking in consideration that no adjustment would be needed in non-configure makefiles. As it is documented, when trying to build on non-configure capable systems or on systems which for any reason don't run the true configure script, it is required to have the proper curlbuild.h in place before calling any makefile. Due to the hardcore memory debugging stuff c-ares enabled debug builds also need the file in the proper place before attempting to build c-ares.
2008-08-08Add debug tracing for CURL_CHECK_DEFYang Tse
2008-08-08Made ftp a required featureDan Fandrich
2008-08-08Added test1059 to test the FTP proxy tunnel problem fixed July 11.Dan Fandrich
2008-08-08Peek at predefined symbols done. and now removed.Yang Tse
Netware's autobuilds gcc can not been told apart from a standard built gcc.
2008-08-08Add metroworks and generic gccYang Tse
2008-08-08Take a peek at netware's gcc predefined symbols.Yang Tse
2008-08-08Fixed an uninitialized variable in multi_runsingle() that could cause aDan Fandrich
request to prematurely end.