mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
import drb/runit/*.rb
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d6153337f6
commit
bc867112ec
17 changed files with 1279 additions and 0 deletions
24
test/drb/ut_array_drbssl.rb
Normal file
24
test/drb/ut_array_drbssl.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
require 'drb/drb'
|
||||
require 'drb/extserv'
|
||||
require 'drb/ssl'
|
||||
|
||||
if __FILE__ == $0
|
||||
def ARGV.shift
|
||||
it = super()
|
||||
raise "usage: #{$0} <uri> <name>" unless it
|
||||
it
|
||||
end
|
||||
|
||||
config = Hash.new
|
||||
config[:SSLVerifyMode] = OpenSSL::SSL::VERIFY_PEER
|
||||
config[:SSLVerifyCallback] = lambda{|ok,x509_store|
|
||||
true
|
||||
}
|
||||
config[:SSLCertName] =
|
||||
[ ["C","JP"], ["O","Foo.DRuby.Org"], ["CN", "Sample"] ]
|
||||
|
||||
DRb.start_service('drbssl://:0', [1, 2, 'III', 4, "five", 6], config)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue