summaryrefslogtreecommitdiff
path: root/lib/webrick/httpresponse.rb
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-22 21:13:06 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-22 21:13:06 +0000
commit4a663be97ea6b29923d0baab5a1e24699c0ecdef (patch)
treeed6c46567fa49ba4bf3a85e1e8e06840986fca65 /lib/webrick/httpresponse.rb
parent6bcf78e40df4b20e85ab1f2207dd88781e578867 (diff)
* lib/webrick/cgi.rb (CGI): add support for mod_ruby.
* lib/webrick/cgi.rb (CGI::Socket): add check for existence of OpenSSL module in all HTTPS related methods. * lib/webrick/cgi.rb (CGI::Socket#cipher): should create similar value to OpenSSL::SSLSocket#cipher. * lib/webrick/httpresponse.rb (HTTPResponse#setup_header): should set "connection: close" if @keep_alive is false. * lib/webrick/https.rb (HTTPrequest#meta_vars): add supprt for SSL_PROTOCOL, SSL_CIPHER_USEKEYSIZE and SSL_CIPHER_ALGKEYSIZE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/webrick/httpresponse.rb')
-rw-r--r--lib/webrick/httpresponse.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/webrick/httpresponse.rb b/lib/webrick/httpresponse.rb
index 9d6e5522ed..a0e7155ce6 100644
--- a/lib/webrick/httpresponse.rb
+++ b/lib/webrick/httpresponse.rb
@@ -132,11 +132,12 @@ module WEBrick
# Keep-Alive connection.
if @header['connection'] == "close"
@keep_alive = false
- end
- if keep_alive?
+ elsif keep_alive?
if chunked? || @header['content-length']
@header['connection'] = "Keep-Alive"
end
+ else
+ @header['connection'] = "close"
end
# Location is a single absoluteURI.