Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-08-20 | - Phil Pellouchoud pointed out that the windows version of libcurl had a | Daniel Stenberg | |
memory leak because it never called the OpenSSL function CRYPTO_cleanup_all_ex_data() as it was supposed to. This was because of a missing define in config-win32.h! | |||
2008-08-18 | Update test case 557 | Yang Tse | |
2008-08-18 | #159 and #160 already done. | Yang Tse | |
Add more tasks to #144. | |||
2008-08-18 | Added test case 557 to verify libcurl's internal curl_m*printf() functions | Yang Tse | |
formatting functionality when handling signed and unsigned longs, as well as our curl_off_t data type. | |||
2008-08-17 | Pick-up programs from Makefile.inc. | Gisle Vanem | |
2008-08-17 | Replace 'HttpPost' with 'curl_httppost'. | Gisle Vanem | |
2008-08-17 | Rewritten to also produce a static library (libcurl_wc.lib). | Gisle Vanem | |
2008-08-17 | OpenSSl enabled NetWare builds are changed to use the 'openssl' subdirectory | Yang Tse | |
when including the OpenSSL header files. This is the recommended setting, this prevents the undesired inclusion of header files with the same name as those of OpenSSL but which do not belong to the OpenSSL package. The visible change from previously released libcurl versions is that now OpenSSl enabled NetWare builds also define USE_OPENSSL in config files, and that OpenSSL header files must be located in a subdirectory named 'openssl'. | |||
2008-08-17 | Adjust usage of conditional definition of USE_OPENSSL | Yang Tse | |
2008-08-17 | libcurl internal base64.h header file renamed to curl_base64.h | Yang Tse | |
2008-08-17 | libcurl internal md5.h header file renamed to curl_md5.h | Yang Tse | |
2008-08-16 | Added #159 and #160 | Yang Tse | |
2008-08-16 | Ops, remove 'use_vc'. | Gisle Vanem | |
2008-08-16 | Support Watt-32 under Win32. | Gisle Vanem | |
2008-08-16 | Oops, missed FORMAT_OFF_TU | Yang Tse | |
2008-08-16 | Fix Use of conditional definition of USE_OPENSSL | Yang Tse | |
2008-08-16 | Library internal only C preprocessor macros FORMAT_OFF_T and FORMAT_OFF_TU | Yang Tse | |
remain in use as internal curl_off_t print formatting strings for the internal *printf functions which still cannot handle print formatting string directives such as "I64d", "I64u", and others available on MSVC, MinGW, Intel's ICC, and other DOS/Windows compilers. This reverts previous commit part which did: FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU | |||
2008-08-15 | Added test case 1065 to test a PUT with a single file but two URLs. This | Dan Fandrich | |
was discovered to be problematic while investigating an incident reported by Von back in May. curl in this case doesn't include a Content-Length: or Transfer-Encoding: chunked header which is illegal. This test case is added to DISABLED until a solution is found. | |||
2008-08-15 | For congruency sake with the naming of other CURL_XXXXXX_CURL_OFF_T macros, | Yang Tse | |
the names of the curl_off_t formatting string directives now become CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU. CURL_FMT_OFF_T -> CURL_FORMAT_CURL_OFF_T CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU Remove the use of an internal name for the curl_off_t formatting string directives and use the common one available from the inside and outside of the library. FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU | |||
2008-08-14 | curlbuild.h is a generated file on configure-capable systems | Yang Tse | |
2008-08-14 | Added Range keyword | Dan Fandrich | |
2008-08-14 | Added test 1063 to test an invalid large range on a file: | Dan Fandrich | |
2008-08-14 | Fixed unused variable warning | Dan Fandrich | |
2008-08-14 | Take three at trying to detect signed and unsigned curl_off_t integer constant | Yang Tse | |
suffixes, using a test-and-try suffix approach letting the compiler validate it. | |||
2008-08-14 | When using our internal curlx_strtoll function NEED_CURL_STRTOLL must be ↵ | Yang Tse | |
defined, the source code of curlx_strtoll is excluded if NEED_CURL_STRTOLL isn't defined. | |||
2008-08-14 | CURL_LLONG_MIN should now be signed | Yang Tse | |
2008-08-14 | Use our CURL_LLONG_MAX and CURL_LLONG_MIN which are defined with the proper ↵ | Yang Tse | |
suffix. | |||
2008-08-14 | Change CURL_CHECK_DEF_INTXX_C suffix definition detection. | Yang Tse | |
Add debug tracing for CURL_CHECK_DEF_INTXX_C. | |||
2008-08-13 | Fixed: | Daniel Stenberg | |
155 - bug #2038004 "Curl OpenSSL not compatible with 7.17 or 7.18" 156 - proxy CONNECT issue (details not public yet due to possible security impact) | |||
2008-08-13 | Use autoconf's result of AC_CHECK_SIZEOF(long) in CURL_CONFIGURE_LONG | Yang Tse | |
2008-08-13 | Ensure that the compiler 'knows' the 'long' type in CURL_CONFIGURE_LONG | Yang Tse | |
2008-08-13 | Sync config.h generation from lib/Makefile.netware and src/Makefile.netware | Yang Tse | |
2008-08-13 | Using the name of a macro inside AC_MSG_WARN takes aclocal to NeverLand. | Yang Tse | |
2008-08-13 | Adjust IBM C compiler CURL_SIZEOF_LONG | Yang Tse | |
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. |