зеркало из https://github.com/github/ruby.git
25 строки
542 B
Ruby
25 строки
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
|
|
|