1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

add safe_leve, default_safe_level ([druby-ja:120])

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2005-02-13 15:13:54 +00:00
parent 1a22e46d60
commit 2681be1eed
5 changed files with 65 additions and 9 deletions

View file

@ -9,8 +9,8 @@ if __FILE__ == $0
end
$SAFE = 1
DRb.start_service('druby://localhost:0', [1, 2, 'III', 4, "five", 6])
DRb.start_service('druby://localhost:0', [1, 2, 'III', 4, "five", 6],
{:safe_level => 1})
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
end