зеркало из https://github.com/github/ruby.git
* lib/net/http.rb (Net::HTTP#connect): support SNI (Server Name
Indication) for HTTPS. [ruby-dev:43164] http://stackoverflow.com/questions/4685736/openssl-server-name-indication-support-in-ruby git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
60f2c9cf5b
Коммит
afe7aac47b
|
@ -1,3 +1,9 @@
|
|||
Mon Feb 7 22:34:20 2011 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* lib/net/http.rb (Net::HTTP#connect): support SNI (Server Name
|
||||
Indication) for HTTPS. [ruby-dev:43164]
|
||||
http://stackoverflow.com/questions/4685736/openssl-server-name-indication-support-in-ruby
|
||||
|
||||
Mon Feb 7 16:05:32 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* lib/rdoc: Upgrade to RDoc 3.5.3 Fixes [Bug #4376]
|
||||
|
|
3
NEWS
3
NEWS
|
@ -88,6 +88,9 @@ with all sufficient information, see the ChangeLog file.
|
|||
* IO#winsize
|
||||
* IO.console
|
||||
|
||||
* net/http
|
||||
* SNI (Server Name Indication) supported for HTTPS.
|
||||
|
||||
* optparse
|
||||
* support for bash/zsh completion.
|
||||
|
||||
|
|
|
@ -780,6 +780,8 @@ module Net #:nodoc:
|
|||
@socket.writeline ''
|
||||
HTTPResponse.read_new(@socket).value
|
||||
end
|
||||
# Server Name Indication (SNI) RFC 3546
|
||||
s.hostname = @address if s.respond_to? :hostname=
|
||||
timeout(@open_timeout) { s.connect }
|
||||
if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
|
||||
s.post_connection_check(@address)
|
||||
|
|
Загрузка…
Ссылка в новой задаче