Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-29 | Send an EOF message before closing a channel, as recommended by RFC4254. | Dan Fandrich | |
Enable libssh2 tracing when ssh debugging is turned on. | |||
2007-03-29 | fix compiler warning | Yang Tse | |
2007-03-29 | fix error introduced in last commit | Yang Tse | |
2007-03-28 | fix compiler warning | Yang Tse | |
2007-03-28 | Improve detection of socket events which allow a further recv() call | Yang Tse | |
to complete with no delay and actually find out what happened with the socket. As well as detection of socket send()able condition. This also allows removal of a Cygwin specific block of code. | |||
2007-03-28 | djgpp uses gcc which has varadic macros. | Gisle Vanem | |
2007-03-28 | Fix compiler warning. | Gisle Vanem | |
2007-03-28 | Simplified code around 'tld_errmsg' a bit. | Gisle Vanem | |
2007-03-27 | added variadic macro stuff. | Gunter Knauf | |
2007-03-27 | Update message | Yang Tse | |
2007-03-27 | New Internal wrapper function Curl_select() around select (2), it | Yang Tse | |
uses poll() when a fine poll() is available, so now libcurl can be built without select() support at all if a fine poll() is available. | |||
2007-03-27 | don't retry select() call upon unrecoverable error EBADF | Yang Tse | |
2007-03-27 | Platforms that lack autotools support should define HAVE_VARIADIC_MACROS_C99 | Yang Tse | |
and/or HAVE_VARIADIC_MACROS_GCC for specific compiler versions that support variadic macros with C99 style and/or old gcc style in their specific config.h file. If previous definitions are not done, even when aplicable, and --disable-verbose is used, the fallback (void) method will be used to define infof, avoiding the inclusion of unwanted strings in the resulting library/executable. | |||
2007-03-26 | Internal function Curl_select() renamed to Curl_socket_ready() | Yang Tse | |
2007-03-26 | changed link lib order to make nlmconv happy. | Gunter Knauf | |
2007-03-26 | added CVS Id tag. | Gunter Knauf | |
2007-03-26 | fixed build to use compiler-default lib extension. | Gunter Knauf | |
2007-03-25 | - Daniel Johnson fixed multi code to traverse the easy handle list properly. | Daniel Stenberg | |
A left-over bug from the February 21 fix. | |||
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-24 | Fixed a couple of compile problems. | Dan Fandrich | |
2007-03-24 | Fixed a memory leak when specifying a proxy with a file: URL and added | Dan Fandrich | |
test case 288 to verify it. | |||
2007-03-23 | add missing state name for the debug state switch output | Daniel Stenberg | |
2007-03-23 | fix debug message | Daniel Stenberg | |
2007-03-23 | Added --pubkey option to curl and made --key also work for SCP/SFTP, | Dan Fandrich | |
plus made --pass work on an SSH private key as well. | |||
2007-03-23 | fix yet another leftover in previous commit | Yang Tse | |
2007-03-23 | fix leftover in previous commit | Yang Tse | |
2007-03-23 | fix compiler warning: empty body in an if/else-statement | Yang Tse | |
2007-03-23 | Change spelling, ONE_TERRABYTE -> ONE_TERABYTE | Yang Tse | |
Shave off a couple of function calls in the part of Curl_pgrsUpdate() which is always executed when called. Fix a couple of comments. | |||
2007-03-23 | Don't shut down sftp in an error if it was never started. | Dan Fandrich | |
2007-03-22 | Fixed unused variable compiler warning. | Dan Fandrich | |
2007-03-22 | Use C99-style variadic macros when available. | Dan Fandrich | |
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-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 | 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 | 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-15 | Fixed some memory leaks in various error paths. | Dan Fandrich | |
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 | Use Curl_inet_pton() instead of inet_pton(). | Gisle Vanem | |
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 | |