Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-11 | Removed function prototype without implementation | Yang Tse | |
2009-12-10 | - Siegfried Gyuricsko found out that the curl manual said --retry would retry | Daniel Stenberg | |
on FTP errors in the transient 5xx range. Transient FTP errors are in the 4xx range. The code itself only tried on 5xx errors that occured _at login_. Now the retry code retries on all FTP transfer failures that ended with a 4xx response. (http://curl.haxx.se/bug/view.cgi?id=2911279) | |||
2009-12-10 | argh, use the correct bug id | Daniel Stenberg | |
2009-12-10 | - Constantine Sapuntzakis figured out a case which would lead to libcurl | Daniel Stenberg | |
accessing alredy freed memory and thus crash when using HTTPS (with OpenSSL), multi interface and the CURLOPT_DEBUGFUNCTION and a certain order of cleaning things up. I fixed it. (http://curl.haxx.se/bug/view.cgi?id=2891591) | |||
2009-12-10 | minor indent change | Daniel Stenberg | |
2009-12-10 | - Fixed curl erroneously reporting output stream write failures with ↵ | Yang Tse | |
disabled buffering | |||
2009-12-09 | signal handling to cleanup on SIGINT and SIGTERM, followup | Yang Tse | |
2009-12-07 | - Martin Storsjo made libcurl use the Expect: 100-continue header for posts | Daniel Stenberg | |
with unknown size. Previously it was only used for posts with a known size larger than 1024 bytes. | |||
2009-12-04 | 74. The HTTP spec allows headers to be merged and become comma-separated | Daniel Stenberg | |
instead of being repeated several times. This also include Authenticate: and Proxy-Authenticate: headers and while this hardly every happens in real life it will confuse libcurl which does not properly support it for all headers - like those Authenticate headers. | |||
2009-12-03 | Fix 'uploaded' file descriptor leak | Yang Tse | |
2009-12-03 | signal handling to cleanup on SIGINT and SIGTERM | Yang Tse | |
2009-12-02 | lib/nss.c: avoid use of uninitialized value | Kamil Dudka | |
2009-12-02 | signal handling to cleanup on SIGINT and SIGTERM | Yang Tse | |
2009-12-01 | Set socket option SO_REUSEADDR=true on stunnel accept'ing port | Yang Tse | |
2009-12-01 | - If the Expect: 100-continue header has been set by the application through | Daniel Stenberg | |
curl_easy_setopt with CURLOPT_HTTPHEADER, the library should set data->state.expect100header accordingly - the current code (in 7.19.7 at least) doesn't handle this properly. Martin Storsjo provided the fix! | |||
2009-11-30 | start working on 1.7.1 | Daniel Stenberg | |
2009-11-30 | - In order to better reflect that the returned pid is extracted from the | Yang Tse | |
given file, serverpid sub is renamed to pidfromfile. In addition it is enhanced to make sure that it always returns zero unless a numerical positive value is returned. - To better reflect that only process existance is actually checked, checkserver sub is renamed to processexists. In addition it is enhanced making it remove the given pid file when the extracted pid is no longer alive. | |||
2009-11-29 | #71 "TFTP block size / better integration in transfer" is now expected to | Daniel Stenberg | |
have been fixed! | |||
2009-11-29 | a binding for Falcon | Daniel Stenberg | |
2009-11-28 | - Added Diffie-Hellman parameters to several test harness certificate files in | Yang Tse | |
PEM format. Required by several stunnel versions used by our test harness. | |||
2009-11-28 | Use different log files for each protocol | Yang Tse | |
2009-11-28 | s/socklen_t/curl_socklen_t/g | Yang Tse | |
2009-11-28 | Fix compiler warning: unused variable `data' | Yang Tse | |
2009-11-27 | 7.20.0 is the planned next version number | Daniel Stenberg | |
2009-11-27 | document --tftp-blksize | Daniel Stenberg | |
2009-11-27 | - Markus Koetter provided a polished and updated version of Chad Monroe's TFTP | Daniel Stenberg | |
rework patch that now integrates TFTP properly into libcurl so that it can be used non-blocking with the multi interface and more. BLKSIZE also works. The --tftp-blksize option was added to allow setting the TFTP BLKSIZE from the command line. | |||
2009-11-27 | Attempt to enhance stunnel 3.X logging | Yang Tse | |
2009-11-27 | Prevent running stunnel unless its version can be determined. | Yang Tse | |
2009-11-27 | Log sws IPv version, port and pid when exiting due to SIGINT or SIGTERM. | Yang Tse | |
2009-11-27 | To allow remote log inspection avoid redirecting messages to stderr. | Yang Tse | |
Set 0600 file permissions on certificate pem files. | |||
2009-11-27 | Preserve empty line following last target | Yang Tse | |
2009-11-26 | Log info for start up failures. | Yang Tse | |
2009-11-26 | - Extended and fixed the change I did on Dec 11 for the the progress | Daniel Stenberg | |
meter/callback during FTP command/response sequences. It turned out it was really lame before and now the progress meter SHOULD get called at least once per second. | |||
2009-11-26 | Only attempt to clear the server-logs lock when previously set by this same ↵ | Yang Tse | |
server. | |||
2009-11-26 | signal handling to cleanup on SIGINT and SIGTERM | Yang Tse | |
2009-11-26 | - Larry Lansing fixed ares_parse_srv_reply to properly parse replies | Yang Tse | |
which might contain non-SRV answers, skipping over potential non-SRV ones such as CNAMEs. | |||
2009-11-24 | When using icc, compile with -fpic and link with intel dynamic libraries. | Yang Tse | |
2009-11-24 | clarify what a modern version of libcurl means | Daniel Stenberg | |
2009-11-24 | Added 'currently' in italics to insist on transient situation. | Yang Tse | |
2009-11-24 | Fix language | Yang Tse | |
2009-11-24 | refreshed | Daniel Stenberg | |
2009-11-23 | - David Byron modified Makefile.dist vc8 and vc9 targets in order to allow | Yang Tse | |
finer granularity control when generating src and lib makefiles. | |||
2009-11-23 | Enhance some debug messages for initialization failures. | Yang Tse | |
Fix compiler warning: conditional expression is constant. | |||
2009-11-23 | - Bjorn Augustsson reported a bug which made curl not report any problems even | Daniel Stenberg | |
though it failed to write a very small download to disk (done in a single fwrite call). It turned out to be because fwrite() returned success, but there was insufficient error-checking for the fclose() call which tricked curl to believe things were fine. | |||
2009-11-23 | Daniel wants upcoming release to be 1.7.0 | Yang Tse | |
2009-11-23 | Mention last changes | Yang Tse | |
2009-11-23 | - Removed from external interface preprocessor symbol definition for | Yang Tse | |
CARES_HAVE_ARES_FREE_DATA. Current functionality of ares_free_data() makes it unnecessary. | |||
2009-11-23 | Added README.msvc | Yang Tse | |
2009-11-23 | Changed c-ares naming conventions when using MSVC as described in README.msvc | Yang Tse | |
2009-11-23 | fixed CURLOPT_TFTP_BLKSIZE typo | Daniel Stenberg | |