* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SocketForwarder):

add do_not_reverse_lookup.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gotoyuzo 2004-03-15 01:14:51 +00:00
Родитель f52a248eae
Коммит 5bf9610130
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Mon Mar 15 10:14:51 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SocketForwarder):
add do_not_reverse_lookup.
Sun Mar 14 22:07:38 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_thread_raise): err at unstarted thread. (PR#1302)

Просмотреть файл

@ -14,7 +14,8 @@
$Id$
=end
require 'openssl/buffering'
require "openssl"
require "openssl/buffering"
module OpenSSL
module SSL
@ -42,6 +43,10 @@ module OpenSSL
def closed?
to_io.closed?
end
def do_not_reverse_lookup=(flag)
to_io.do_not_reverse_lookup = flag
end
end
class SSLSocket