summaryrefslogtreecommitdiff
path: root/lib/drb/acl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/drb/acl.rb')
-rw-r--r--lib/drb/acl.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/drb/acl.rb b/lib/drb/acl.rb
index 29a378199f..8d06b25829 100644
--- a/lib/drb/acl.rb
+++ b/lib/drb/acl.rb
@@ -230,21 +230,3 @@ class ACL
end
end
-
-if __FILE__ == $0
- # example
- list = %w(deny all
- allow 192.168.1.1
- allow ::ffff:192.168.1.2
- allow 192.168.1.3
- )
-
- addr = ["AF_INET", 10, "lc630", "192.168.1.3"]
-
- acl = ACL.new
- p acl.allow_addr?(addr)
-
- acl = ACL.new(list, ACL::DENY_ALLOW)
- p acl.allow_addr?(addr)
-end
-