From 26591946f27ed9dc2902ffd63a72e053b6cee433 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Tue, 18 Dec 2007 14:43:03 +0000 Subject: * lib/webrick/server.rb (WEBrick::GenericServer#accept_client): should rescue Errno::EINVAL from TCPServer#accept. this exception might occur if the server socket is not in ready to listen. * lib/webrick/server.rb (WEBrick::GenericServer#accept_client): don't call TCPServer#close if the :ShutdownSocketWithoutClose is set. * lib/webrick/config.rb (WEBrick::Config::General): add new parameter :ShutdownSocketWithoutClose. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index eba688385..c5d390ed0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Tue Dec 18 23:27:51 2007 GOTOU Yuuzou + + * lib/webrick/server.rb (WEBrick::GenericServer#accept_client): + should rescue Errno::EINVAL from TCPServer#accept. this exception + might occur if the server socket is not in ready to listen. + + * lib/webrick/server.rb (WEBrick::GenericServer#accept_client): + don't call TCPServer#close if the :ShutdownSocketWithoutClose is set. + + * lib/webrick/config.rb (WEBrick::Config::General): add new parameter + :ShutdownSocketWithoutClose. + Tue Dec 18 22:51:47 2007 GOTOU Yuuzou * ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLServer#shutdown): -- cgit