Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
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 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-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-07 | Honour --ftp-ssl-control on ftps:// URLs to allow encrypted control and | Dan Fandrich | |
unencrypted data connections. | |||
2007-03-01 | Do not remove CURLM_STATE_WAITPROXYCONNECT from the CURLMstate enum | Yang Tse | |
in builds with HTTP support disabled to keep consistent enum values for CURLMstate in all kind of builds. | |||
2007-02-28 | proper symbol definition check for Novell NetWare | Yang Tse | |
2007-02-28 | proper symbol definition check for all AmigaOS flavours | Yang Tse | |
2007-02-28 | protect from themselves those who need it | Yang Tse | |
2007-02-27 | - Hang Kin Lau found and fixed: When I use libcurl to connect to an https | Daniel Stenberg | |
server through a proxy and have the remote https server port set using the CURLOPT_PORT option, protocol gets reset to http from https after the first request. User defined URL was modified internally by libcurl and subsequent reuse of the easy handle may lead to connection using a different protocol (if not originally http). I found that libcurl hardcoded the protocol to "http" when it tries to regenerate the URL if CURLOPT_PORT is set. I tried to fix the problem as follows and it's working fine so far | |||
2007-02-27 | Added TOPDIR variable. Put dependencies in external file. | Gisle Vanem | |
2007-02-27 | no proxy support if libcurl is built with HTTP disabled | Yang Tse | |
2007-02-26 | Jose Kahan pointed out a Digest server that provided the algorith last in the | Daniel Stenberg | |
header line without quotes and with a CRLF immediately following... | |||
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-26 | Removed unneeded 'HAVE_x' defines. | Gisle Vanem | |
2007-02-26 | Fix typo. | Gisle Vanem | |
2007-02-25 | - Adam D. Moss made the HTTP CONNECT procedure less blocking when used from | Daniel Stenberg | |
the multi interface. Note that it still does a part of the connection in a blocking manner. | |||
2007-02-22 | compiler warning fix | Yang Tse | |
2007-02-22 | Fix compiler warning "statement is unreachable" | Yang Tse | |
2007-02-22 | Fix compiler warnings | Yang Tse | |
"case label value exceeds maximum value for type" and "comparison is always false due to limited range of data type" Both triggered when using a bool variable as the switch variable in a switch statement and using enums for the case targets. | |||
2007-02-22 | Check for stdbool.h at configuration stage, and include it if available. | Yang Tse | |
Check for lowercase 'bool' type at configuration stage. If not available provide a suitable replacement with a type definition of 'unsigned char' in setup_once.h Move definitions of TRUE and FALSE to setup_once.h | |||
2007-02-21 | silence two cases of "comparison between signed and unsigned" | Daniel Stenberg | |
2007-02-21 | - Ravi Pratap provided work on libcurl making pipelining more robust and | Daniel Stenberg | |
fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are dispatched from the pipeline o Fixed several curl bugs with pipelining when the server is returning chunked encoding: * Added states to chunked parsing for final CRLF * Rewind buffer after parsing chunk with data remaining * Moved chunked header initializing to a spot just before receiving headers | |||
2007-02-21 | curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h | Yang Tse | |
2007-02-21 | Include some possible dependencies of arpa/inet.h | Dan Fandrich | |