* lib/net/http.rb (HTTP#request): should not overwrite Connection header. (ruby-bugs:PR#1274)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2004-02-08 05:24:47 +00:00
parent c5c6516c2d
commit 992d2749ac
2 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,8 @@
Sun Feb 8 14:24:35 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb (HTTP#request): should not overwrite Connection
header. (ruby-bugs:PR#1274)
Sat Feb 8 10:11:21 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> Sat Feb 8 10:11:21 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* dir.c (glob_helper): Dir.glob('**/') did not work. [ruby-dev:22832] * dir.c (glob_helper): Dir.glob('**/') did not work. [ruby-dev:22832]

View File

@ -48,9 +48,9 @@ module Net # :nodoc:
# (formal version) # (formal version)
# #
# require 'net/http' # require 'net/http'
# Net::HTTP.start('www.example.com', 80) { |http| # Net::HTTP.start('www.example.com', 80) {|http|
# response = http.get('/index.html') # response = http.get('/index.html')
# puts response.body # puts response.body
# } # }
# #
# (shorter version) # (shorter version)
@ -67,8 +67,8 @@ module Net # :nodoc:
# === Posting Form Data # === Posting Form Data
# #
# require 'net/http' # require 'net/http'
# Net::HTTP.start('some.www.server', 80) { |http| # Net::HTTP.start('some.www.server', 80) {|http|
# response = http.post('/cgi-bin/search.rb', 'query=ruby') # response = http.post('/cgi-bin/search.rb', 'query=ruby')
# } # }
# #
# === Accessing via Proxy # === Accessing via Proxy
@ -83,7 +83,7 @@ module Net # :nodoc:
# proxy_port = 8080 # proxy_port = 8080
# : # :
# Net::HTTP::Proxy(proxy_addr, proxy_port).start('www.example.com') {|http| # Net::HTTP::Proxy(proxy_addr, proxy_port).start('www.example.com') {|http|
# # always connect to your.proxy.addr:8080 # # always connect to your.proxy.addr:8080
# : # :
# } # }
# #
@ -160,13 +160,13 @@ module Net # :nodoc:
# allows you to use 1.2 features again. # allows you to use 1.2 features again.
# #
# # example # # example
# Net::HTTP.start { |http1| ...(http1 has 1.2 features)... } # Net::HTTP.start {|http1| ...(http1 has 1.2 features)... }
# #
# Net::HTTP.version_1_1 # Net::HTTP.version_1_1
# Net::HTTP.start { |http2| ...(http2 has 1.1 features)... } # Net::HTTP.start {|http2| ...(http2 has 1.1 features)... }
# #
# Net::HTTP.version_1_2 # Net::HTTP.version_1_2
# Net::HTTP.start { |http3| ...(http3 has 1.2 features)... } # Net::HTTP.start {|http3| ...(http3 has 1.2 features)... }
# #
# This function is NOT thread-safe. # This function is NOT thread-safe.
# #
@ -819,7 +819,7 @@ module Net # :nodoc:
def request(req, body = nil, &block) # :yield: +response+ def request(req, body = nil, &block) # :yield: +response+
unless started? unless started?
start { start {
req['connection'] = 'close' req['connection'] ||= 'close'
return request(req, body, &block) return request(req, body, &block)
} }
end end