Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-15 | introduce uppercase macros SOCKERRNO, SET_SOCKERRNO(), ERRNO and SET_ERRNO() | Yang Tse | |
making them available to any source code file which includes "setup.h". Macro SOCKERRNO / SET_SOCKERRNO() returns / sets the *socket-related* errno (or equivalent) on this platform to hide platform details to code using it. Macro ERRNO / SET_ERRNO() returns / sets the NOT *socket-related* errno (or equivalent) on this platform to hide platform details to code using it. | |||
2007-02-15 | Do not define HAVE_GMTIME_R for native Windows builds | Yang Tse | |
2007-02-15 | Daniel Mirchandani fix to make libcurl build nicely on Winsock | Yang Tse | |
build targets when --disable-verbose is specified. | |||
2007-02-15 | enabled IPV6 builds. | Gunter Knauf | |
2007-02-14 | avoid using funtion isblank() and just use our ISBLANK | Yang Tse | |
macro to provide this functionality on all platforms | |||
2007-02-14 | compiler warning fix | Yang Tse | |
2007-02-13 | ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' on | Daniel Stenberg | |
the left side of @ to make it short(er). | |||
2007-02-13 | - Robert A. Monat made libcurl build fine with VC2005 - it doesn't have | Daniel Stenberg | |
gmtime_r() like the older VC versions. He also made use of some machine- specific defines to differentiate the "OS" define. | |||
2007-02-13 | check for isblank() at configuration stage. If not available | Yang Tse | |
provide a suitable replacement for use in our ISBLANK macro | |||
2007-02-13 | use our own ISUPPER and ISLOWER macros | Yang Tse | |
2007-02-13 | use our own ISBLANK macro | Yang Tse | |
2007-02-13 | use our own ISSPACE macro | Yang Tse | |
2007-02-13 | compiler warning fix | Yang Tse | |
2007-02-12 | Rob Crittenden added support for NSS (Network Security Service) for the | Daniel Stenberg | |
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/ | |||
2007-02-12 | - Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent | Daniel Stenberg | |
to the debug callback. - Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's internal decoding of content or transfer encoded content. This may be preferable in cases where you use libcurl for proxy purposes or similar. The command line tool got a --raw option to disable both at once. | |||
2007-02-12 | - Jeff Pohlmeyer fixed a flaw in curl_multi_add_handle() when adding a handle | Daniel Stenberg | |
that has an easy handle present in the "closure" list pending closure. | |||
2007-02-07 | SCP upload done non-blocking | Daniel Stenberg | |
2007-02-06 | fix for millisecond resolution timeouts | Yang Tse | |
2007-02-06 | compiler warning fix | Yang Tse | |
2007-02-06 | read SFTP with the non-blocking API | Daniel Stenberg | |
2007-02-06 | compiler warning fix | Yang Tse | |
2007-02-05 | - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS | Daniel Stenberg | |
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already. | |||
2007-02-05 | compiler warning fix | Yang Tse | |
2007-02-04 | Suppress warning "'nread' might be used uninitialized in this function". | Gisle Vanem | |
2007-02-03 | compiler warning fix | Yang Tse | |
2007-02-03 | - Manfred Schwarb reported that socks5 support was broken and help us pinpoint | Daniel Stenberg | |
the problem. The code now tries harder to use httproxy and proxy where apppropriate, as not all proxies are HTTP... | |||
2007-02-02 | compiler warning fix | Yang Tse | |
2007-02-02 | move DEBUGF macro definition to setup_once.h | Yang Tse | |
2007-02-02 | prefer using the (upcoming) non-blocking libssh2 API | Daniel Stenberg | |
2007-02-01 | compiler warning fix | Yang Tse | |
2007-02-01 | Suppress the "'convbuf' might be used uninitialized in this function" warning. | Gisle Vanem | |
2007-02-01 | fogot to change Curl_mk_connc in header file | Yang Tse | |
2007-02-01 | compiler warning fix | Yang Tse | |
2007-01-31 | add debug messages for initialization failures | Yang Tse | |
2007-01-29 | Use DOS line-endings. | Gisle Vanem | |
2007-01-29 | - Michael Wallner reported that when doing a CONNECT with a custom User-Agent | Daniel Stenberg | |
header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix. | |||
2007-01-29 | fixed segfault when compiled with MingW32 and cmd or command shell. | Gunter Knauf | |
2007-01-28 | Andreas Rieke added extra infof() for when a connection is not re-used due to | Daniel Stenberg | |
SSL conditions not being the same | |||
2007-01-28 | silence compiler warnings | Daniel Stenberg | |
2007-01-28 | enabled build with sspi. | Gunter Knauf | |
2007-01-28 | enabled build with hardcoded ca-bundle path; | Gunter Knauf | |
added distclean target. | |||
2007-01-28 | force to create ca-bunde.h even if it exists already. | Gunter Knauf | |
2007-01-28 | use var for awk. | Gunter Knauf | |
2007-01-28 | curl_easy_reset() now resets the CA bundle path correctly | Daniel Stenberg | |
2007-01-28 | another small fix to directory listing output; disabled CURL_LIBSSH2_DEBUG. | Gunter Knauf | |
2007-01-27 | fix sftp directory listing so that it works without -v and is redirectable ↵ | Gunter Knauf | |
with -o/-O. | |||
2007-01-27 | tell us what we put out here... | Gunter Knauf | |
2007-01-27 | update copyright year notice | Yang Tse | |
2007-01-27 | Compiler warning fix | Yang Tse | |
2007-01-27 | sync comment with reality | Yang Tse | |