diff --git a/CHANGES b/CHANGES index b41c269d0d06696891511520f3e76f6f85207b01..f8b3bacce95ced84f5d49a5c199abf09066f579d 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,21 @@ Changelog +Daniel Stenberg (29 Apr 2010) +- Ben Greear made telnet a lot better/easier to use by an application: + + The main change is to allow input from user-specified methods, when they are + specified with CURLOPT_READFUNCTION. All calls to fflush(stdout) in + telnet.c were removed, which makes using 'curl telnet://foo.com' painful + since prompts and other data are not always returned to the user promptly. + Use 'curl --no-buffer telnet://foo.com' instead. In general, the user + should have their CURLOPT_WRITEFUNCTION do a fflush for interactive use. + + Also fix assumption that reading from stdin never returns < 0. + Old code could crash in that case. + + Call progress functions in telnet main loop. + Daniel Stenberg (26 Apr 2010) - Make use of the libssh2_init/exit functions that libssh2 added in version 1.2.5. Using them will improve how libcurl works in threaded situations when diff --git a/RELEASE-NOTES b/RELEASE-NOTES index da41c0ecaa97465d4d701df178ef0ed715353043..5f4b39fa8e7f6b45ad43f235f9042cd5749f6527 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -11,6 +11,7 @@ This release includes the following changes: o added the --proto and -proto-redir options o new configure option --enable-threaded-resolver + o improve TELNET ability with libcurl This release includes the following bugfixes: @@ -30,7 +31,7 @@ This release includes the following known bugs: This release would not have looked like this without help, code, reports and advice from friends like these: - Rainer Canavan, Paul Howarth, Jerome Vouillon, Ruslan Gazizov, - Yang Tse, Kamil Dudka, Alex Bligh + Rainer Canavan, Paul Howarth, Jerome Vouillon, Ruslan Gazizov, Yang Tse, + Kamil Dudka, Alex Bligh, Ben Greear Thanks! (and sorry if I forgot to mention someone)