mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
25 lines
542 B
Ruby
25 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
|
||
|
|