= private = protected
match(addr)
Matches addr against each ACLEntry in this list.
# File lib/drb/acl.rb, line 131 def match(addr) @list.each do |e| return true if e.match(addr) end false end