* 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:
parent
f52a248eae
commit
5bf9610130
@ -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>
|
Sun Mar 14 22:07:38 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (rb_thread_raise): err at unstarted thread. (PR#1302)
|
* eval.c (rb_thread_raise): err at unstarted thread. (PR#1302)
|
||||||
|
@ -14,7 +14,8 @@
|
|||||||
$Id$
|
$Id$
|
||||||
=end
|
=end
|
||||||
|
|
||||||
require 'openssl/buffering'
|
require "openssl"
|
||||||
|
require "openssl/buffering"
|
||||||
|
|
||||||
module OpenSSL
|
module OpenSSL
|
||||||
module SSL
|
module SSL
|
||||||
@ -42,6 +43,10 @@ module OpenSSL
|
|||||||
def closed?
|
def closed?
|
||||||
to_io.closed?
|
to_io.closed?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def do_not_reverse_lookup=(flag)
|
||||||
|
to_io.do_not_reverse_lookup = flag
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class SSLSocket
|
class SSLSocket
|
||||||
|
Loading…
x
Reference in New Issue
Block a user