Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-08-29 | - When libcurl was doing a HTTP POST and the server would respond with | Daniel Stenberg | |
"Connection: close" and actually close the connection after the response-body, libcurl could still have outstanding data to send and it would not properly notice this and stop sending. This caused weirdness and sad faces. http://curl.haxx.se/bug/view.cgi?id=2080222 Note that there are still reasons to consider libcurl's behavior when getting a >= 400 response code while sending data, as Craig Perras' note "http upload: how to stop on error" specifies: http://curl.haxx.se/mail/archive-2008-08/0138.html | |||
2008-08-28 | When not using large file support WIN32's lseek offset is a 'long'. | Yang Tse | |
2008-08-28 | Adjust generation of MSVC project files | Yang Tse | |
2008-08-28 | - I'm abandoning the system with the web site mirrors (but keeping download | Daniel Stenberg | |
files bing mirrored) and thus I've changed the URL in the cookiejar header to no longer use curlm.haxx.se but instead use the main site curl.haxx.se | |||
2008-08-28 | minor code indent fixes | Daniel Stenberg | |
2008-08-28 | - Dengminwen reported that libcurl would lock a (cookie) share twice (without | Daniel Stenberg | |
an unlock in between) for a certain case and that in fact works when using regular windows mutexes but not with pthreads'! Locks should of course not get locked again so this is now fixed. http://curl.haxx.se/mail/lib-2008-08/0422.html | |||
2008-08-28 | Fixed test case 1065 by changing the handling of CURLOPT_UPLOAD to set | Dan Fandrich | |
the HTTP method to GET (or HEAD) when given a value of 0. | |||
2008-08-28 | This file must be kept in CVS with DOS style CR+LF line endings. | Yang Tse | |
2008-08-28 | DLL's resource file specification for VC6 generated .dsp file | Yang Tse | |
2008-08-27 | Add /D "CURL_STATICLIB" to LIB's BASE configuration | Yang Tse | |
2008-08-27 | VC6 generated .dsp file now supports 4 configurations: | Yang Tse | |
libcurl - Win32 DLL Debug libcurl - Win32 DLL Release libcurl - Win32 LIB Debug libcurl - Win32 LIB Release | |||
2008-08-27 | spell! (most of it fixed by Tor Arntsen) | Daniel Stenberg | |
2008-08-27 | Fix large file support for Symbian OS on the emulator. | Dan Fandrich | |
2008-08-27 | Don't abort configuration if recvfrom() is not available. | Yang Tse | |
2008-08-26 | Fixed out of memory problems that caused torture test failures in tests | Dan Fandrich | |
1021 and 1067. | |||
2008-08-26 | minor language adjustment | Yang Tse | |
2008-08-26 | spell out some benefits of this new approach of doing curl_off_t | Daniel Stenberg | |
2008-08-26 | Fix default SIZEOF_OFF_T definition logic | Yang Tse | |
2008-08-26 | Fix _LARGE_FILES definition (thanks to Yang Tse for signaling the bug) | Patrick Monnerat | |
2008-08-26 | Use SIZEOF_OFF_T definition from config file | Yang Tse | |
2008-08-25 | leftover | Yang Tse | |
2008-08-25 | For congruency sake with the naming of other CURL_XXXXXX_CURL_OFF_T macros, | Yang Tse | |
the name of the curl_off_t data type used now becomes CURL_TYPEOF_CURL_OFF_T CURL_OFF_T -> CURL_TYPEOF_CURL_OFF_T | |||
2008-08-24 | Remove debug tracing and nearly all changes introduced since revision 1.72 | Yang Tse | |
The effective result of this commit is revision 1.72 plus two changed lines. These can be viewed in http://cool.haxx.se/cvs.cgi/curl/lib/mprintf.c.diff?r1=1.72&r2=1.77 | |||
2008-08-24 | Introduced the configure option --enable-soname-bump that lets a user enforce | Daniel Stenberg | |
an SONAME bump. | |||
2008-08-24 | Added firefox-db2pem.sh to the release archive | Daniel Stenberg | |
2008-08-24 | Debug trace curl_mprintf() on x86_64 and ia64 systems. | Yang Tse | |
2008-08-24 | x86_64 fixes | Yang Tse | |
2008-08-24 | x86_64 fixes | Yang Tse | |
2008-08-24 | Test if type casting a 'signed int' to a 'signed long long' fails to do sign ↵ | Yang Tse | |
extension on x86_64. | |||
2008-08-23 | - Running 'make ca-firefox' in the root build dir will now run the new | Daniel Stenberg | |
firefox-db2pem.sh conversion script that converts a local Firefox db of ca certs into PEM format, suitable for use with a OpenSSL or GnuTLS built libcurl. | |||
2008-08-23 | removed obsolete slash in URL. | Gunter Knauf | |
2008-08-23 | revert accidental commit | Daniel Stenberg | |
2008-08-23 | - Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi | Daniel Stenberg | |
interface, and the proxy would send Connection: close during the authentication phase. http://curl.haxx.se/bug/view.cgi?id=2069047 | |||
2008-08-23 | mention the no soname bump too | Daniel Stenberg | |
2008-08-23 | my first take at documenting the curl_off_t situation when doing an upgrade | Daniel Stenberg | |
< 7.19.0 to >= 7.19.x | |||
2008-08-23 | explicit value assignment for comparison result | Yang Tse | |
2008-08-23 | typecast constant in comparison | Yang Tse | |
2008-08-22 | Reinstate struct_stat definition that got lost in previous commit. | Yang Tse | |
2008-08-22 | Adjustments to better select/differentiate when large/small file | Yang Tse | |
support is provided using WIN32 functions directly. | |||
2008-08-22 | Improved curl_m*printf() integral data type size and signedness handling | Yang Tse | |
2008-08-22 | cleanup the BOOL usage | Yang Tse | |
2008-08-21 | use a more updated certdata.txt URL | Daniel Stenberg | |
2008-08-21 | Work around a scanf() bug in djgpp 2.04. The assignments for this | Gisle Vanem | |
format is working okay. But the return value is incorrectly EOF. | |||
2008-08-21 | Added '#define HAVE_STRUCT_IN6_ADDR 1' needed when | Gisle Vanem | |
building with 'USE_ARES'. | |||
2008-08-21 | Added rule to generate '../include/curl/curlbuild.h'. | Gisle Vanem | |
2008-08-21 | Assume we have 'CRYPTO_cleanup_all_ex_data()' on OpenSSL/DOS too. | Gisle Vanem | |
2008-08-21 | MSVC's __int64 data type is only available when _INTEGRAL_MAX_BITS >= 64 | Yang Tse | |
2008-08-21 | Fix a LONG_MIN and LLONG_MIN related bug in internal m*printf() | Yang Tse | |
2008-08-21 | Fix one bug detected thanks to test case 557. | Yang Tse | |
2008-08-21 | Some data type size adjustments. | Yang Tse | |