mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
bc867112ec
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
542 B
Ruby
24 lines
542 B
Ruby
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
|
|
|