6 there = ARGV.shift || "drbssl://localhost:3456"
9 config[:SSLVerifyMode] = OpenSSL::SSL::VERIFY_PEER
10 config[:SSLVerifyCallback] = lambda{|ok,x509_store|
11 p [ok, x509_store.error_string]
15 DRb.start_service(nil,nil,config)
16 h = DRbObject.new(nil, there)