From f0189a046c5b78cabcd521c430e48e8fc5fc29d4 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Mon, 23 Aug 2004 05:06:17 +0000 Subject: * ext/openssl/ossl_ssl.c (ossl_ssl_read): - should return an empty string if specified length to read is 0. - should check for pending data and wait for fd before reading. - call underlying IO's sysread if SSL session is not started. [ruby-dev:24072], [ruby-dev:24075] * ext/openssl/ossl_ssl.c (ossl_ssl_write): - call underlying IO's syswrite if SSL session is not started. * ext/openssl/ossl_ssl.c (ossl_ssl_pending): new method OpenSSL::SSL#pending. * ext/openssl/lib/openssl/buffering.rb: should not use select. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 6cffb1fbe..45d657ad0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +Mon Aug 23 14:04:51 2004 GOTOU Yuuzou + + * ext/openssl/ossl_ssl.c (ossl_ssl_read): + - should return an empty string if specified length to read is 0. + - should check for pending data and wait for fd before reading. + - call underlying IO's sysread if SSL session is not started. + [ruby-dev:24072], [ruby-dev:24075] + + * ext/openssl/ossl_ssl.c (ossl_ssl_write): + - call underlying IO's syswrite if SSL session is not started. + + * ext/openssl/ossl_ssl.c (ossl_ssl_pending): new method + OpenSSL::SSL#pending. + + * ext/openssl/lib/openssl/buffering.rb: should not use select. + Mon Aug 23 12:40:56 2004 NAKAMURA Usaku * lib/resolv.rb (Config.default_config_hash): when multiple domains -- cgit