Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-22 | Add a couple of local macros to improve code readability. | Yang Tse | |
For completeness sake, wait_ms() might also get interrupted when experimental CURL_ACKNOWLEDGE_EINTR is defined. | |||
2007-03-22 | -z hasn't supported "yesterday" for quite some time... | Daniel Stenberg | |
2007-03-22 | attempt to keep message length below 80 chars | Yang Tse | |
2007-03-21 | reverted back to previous version => ↵ | Yang Tse | |
http://curl.haxx.se/mail/lib-2007-03/0258.html | |||
2007-03-21 | avoid the use of variadic macros for greater portability | Yang Tse | |
2007-03-21 | fix compiler warning: implicit conversion from "long" to "int" | Yang Tse | |
2007-03-20 | Fixed: When a signal was caught awaiting for an event using Curl_select() | Yang Tse | |
or Curl_poll() with a non-zero timeout both functions would restart the specified timeout. This could even lead to the extreme case that if a signal arrived with a frecuency lower to the specified timeout neither function would ever exit. Added experimental symbol definition check CURL_ACKNOWLEDGE_EINTR in Curl_select() and Curl_poll(). When compiled with CURL_ACKNOWLEDGE_EINTR defined both functions will return as soon as a signal is caught. Use it at your own risk, all calls to these functions in the library should be revisited and checked before fully supporting this feature. | |||
2007-03-20 | Remove unneeded 'HAVE_*' defines. | Gisle Vanem | |
2007-03-19 | Avoid false positive detection of yaSSL | Yang Tse | |
2007-03-19 | committed | Daniel Stenberg | |
2007-03-19 | Bryan Henderson fixed the progress function so that it can get called | Yang Tse | |
more frequently allowing same calling frecuency for the client progress callback, while keeping the once a second frecuency for speed calculations and internal display of the transfer progress. | |||
2007-03-18 | language fix | Daniel Stenberg | |
2007-03-18 | Removed: yassl build breaks | Daniel Stenberg | |
Added: Frequent calling of user progress callback | |||
2007-03-18 | detect and show if built with yassl, but also set the "openssl" flag internally | Daniel Stenberg | |
since that is the API yassl attempts to provide | |||
2007-03-18 | detect if built with the OpenSSL API "emulated" by yassl | Daniel Stenberg | |
2007-03-18 | Fix compiler warning/error: ISO C90 forbids mixed declarations and code | Yang Tse | |
2007-03-18 | Code refactoring, extracting a new function wait_ms() from Curl_select and | Yang Tse | |
Curl_poll() which is called whenever not a single valid file descriptor is passed to these functions. Improve readibility using a poll() macro to replace WSApoll(). | |||
2007-03-17 | Remove unneeded 'HAVE_*' defines. Detect i386 OS-target (gcc). | Gisle Vanem | |
2007-03-17 | Added cvs id. Use TOPDIR variable. Updated CSOURCES. | Gisle Vanem | |
Dependencies are now put in external file depend.dj. | |||
2007-03-17 | Added a hack to work around the circular dependency when | Gisle Vanem | |
CURL_DEBUG is defined. | |||
2007-03-16 | openssl/bio.h doesn't exist when we build with yassl so avoid trying | Daniel Stenberg | |
2007-03-16 | Fixed the test case to use a truly invalid urlglob range. | Dan Fandrich | |
2007-03-15 | Sebastien Trottier's issue | Daniel Stenberg | |
2007-03-15 | eight fresh issues to keep track of | Daniel Stenberg | |
2007-03-15 | Various memory leaks plugged and NULL pointer fixes made in the ssh code. | Dan Fandrich | |
2007-03-15 | - Nick made the curl tool accept globbing ranges that only is one number, i.e | Daniel Stenberg | |
you can now use [1-1] without curl complaining. | |||
2007-03-15 | Fixed some memory leaks in various error paths. | Dan Fandrich | |
2007-03-15 | show better description for AMD64-linux static libraries PIC check | Yang Tse | |
2007-03-15 | Fixed a memory leak. | Dan Fandrich | |
2007-03-14 | yassl doesn't have SSL_get_shutdown() in its OpenSSL() layer so we check for | Daniel Stenberg | |
it and avoid it, even if this cripples the CCC command | |||
2007-03-14 | Fixed a NULL pointer dereference on sftp initialization failure. | Dan Fandrich | |
Added some more debug logs. | |||
2007-03-13 | --ftp-ssl-control is now honoured on ftps:// URLs | Dan Fandrich | |
2007-03-13 | Use Curl_inet_pton() instead of inet_pton(). | Gisle Vanem | |
2007-03-12 | libcurl supplies its own crypto hash functions when SSL is disabled, so | Dan Fandrich | |
'crypto' tests aren't dependent on SSL. Compiling with --disable-crypto-auth will cause test failures, however. | |||
2007-03-12 | RECV is for download | Daniel Stenberg | |
2007-03-12 | Emmanuel Dreyfus fixed not being able to find ber_free() in | Yang Tse | |
libldap when available in liblber. | |||
2007-03-11 | can just as well NULLify the pointer in a single spot | Daniel Stenberg | |
2007-03-11 | reverted the pselect patch => http://curl.haxx.se/mail/lib-2007-03/0100.html | Daniel Stenberg | |
2007-03-11 | fix compiler warning: unused variable | Yang Tse | |
2007-03-10 | Eygene Ryabinkin fixed a use-after-free issue with HTTP transfers with the | Daniel Stenberg | |
multi interface | |||
2007-03-10 | Bryan Henderson | Daniel Stenberg | |
2007-03-10 | - Bryan Henderson introduces two things: | Daniel Stenberg | |
1) the progress callback gets called more frequently (at times) 2) libcurl *might* call the callback when it receives a signal | |||
2007-03-10 | pycurl 7.16.1 | Daniel Stenberg | |
2007-03-10 | change max allowed time for this test to complete to 90 seconds | Yang Tse | |
2007-03-09 | Updated the test harness to add a new "crypto" feature check and updated the | Dan Fandrich | |
appropriate test case to use it. For now, this is treated the same as the "SSL" feature because curl doesn't list it separately. | |||
2007-03-09 | - Robert Iakobashvili fixed CURLOPT_INTERFACE for IPv6. | Daniel Stenberg | |
2007-03-09 | - Robert A. Monat improved the maketgz and VC6/8 generating to set the correct | Daniel Stenberg | |
machine type too. | |||
2007-03-09 | - Justin Fletcher fixed a file descriptor leak in the curl tool when trying to | Daniel Stenberg | |
upload a file it couldn't open. Bug #1676581 (http://curl.haxx.se/bug/view.cgi?id=1676581) | |||
2007-03-09 | Updated the test harness to check for protocol support before running each | Dan Fandrich | |
test, fixing KNOWN_BUGS #11. Fixed some tests to more accurately specify their required servers and features. | |||
2007-03-08 | Made a few cleanups. | Dan Fandrich | |