class ACL::ACLList

def match(addr)

def match(addr)
  @list.each do |e|
    return true if e.match(addr)
  end
  false
end