diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-25 16:02:45 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-25 16:02:45 +0000 |
commit | ff21b4ec44f2e106e3fa6f4e70a346c9072667dc (patch) | |
tree | a38ec54d602882c227be41284c1092c37e0204bb | |
parent | bcd8c67010c2b8d9b40fee1e758f54e8e07435ac (diff) | |
download | ruby-ff21b4ec44f2e106e3fa6f4e70a346c9072667dc.tar.gz ruby-ff21b4ec44f2e106e3fa6f4e70a346c9072667dc.tar.xz ruby-ff21b4ec44f2e106e3fa6f4e70a346c9072667dc.zip |
* lib/webrick/httpresponse.rb: add HTTPResponse#keep_alive=.
* lib/webrick/httpserver.rb (HTTPServer#run): should pass the
request's keep_alive flag to the response.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5031 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/webrick/httpresponse.rb | 3 | ||||
-rw-r--r-- | lib/webrick/httpserver.rb | 1 |
3 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,10 @@ +Wed Nov 26 00:55:30 2003 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/webrick/httpresponse.rb: add HTTPResponse#keep_alive=. + + * lib/webrick/httpserver.rb (HTTPServer#run): should pass the + request's keep_alive flag to the response. + Tue Nov 25 21:41:35 2003 NAKAMURA Usaku <usa@ruby-lang.org> * defines.h (ENV_IGNORECASE): should define when DOSISH without diff --git a/lib/webrick/httpresponse.rb b/lib/webrick/httpresponse.rb index 6b00c2b88..667c4c46c 100644 --- a/lib/webrick/httpresponse.rb +++ b/lib/webrick/httpresponse.rb @@ -25,7 +25,8 @@ module WEBrick attr_accessor :request_method, :request_uri, :request_http_version attr_accessor :filename - attr_reader :config, :keep_alive, :sent_size + attr_accessor :keep_alive + attr_reader :config, :sent_size def initialize(config) @config = config diff --git a/lib/webrick/httpserver.rb b/lib/webrick/httpserver.rb index cb5cd2af2..11227cf51 100644 --- a/lib/webrick/httpserver.rb +++ b/lib/webrick/httpserver.rb @@ -47,6 +47,7 @@ module WEBrick res.request_method = req.request_method res.request_uri = req.request_uri res.request_http_version = req.http_version + res.keep_alive = req.keep_alive? if handler = @config[:RequestHandler] handler.call(req, res) end |