From dd7f1cdfbd8215ee46c11175bfd2f4fd3569f34a Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 28 Nov 2014 07:44:24 +0000 Subject: merge revision(s) 48563: [Backport #10533] * lib/net/http.rb: Do not attempt SSL session resumption when the session is expired. [Bug #10533] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@48636 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/http.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/net/http.rb b/lib/net/http.rb index a63be7f9a0..1e481ed366 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -912,7 +912,10 @@ module Net #:nodoc: @socket.write(buf) HTTPResponse.read_new(@socket).value end - s.session = @ssl_session if @ssl_session + if @ssl_session and + Time.now < @ssl_session.time + @ssl_session.timeout + s.session = @ssl_session if @ssl_session + end # Server Name Indication (SNI) RFC 3546 s.hostname = @address if s.respond_to? :hostname= Timeout.timeout(@open_timeout, Net::OpenTimeout) { s.connect } -- cgit v1.2.3