class ACL::ACLList

def add(str)

def add(str)
  @list.push(ACLEntry.new(str))
end

def initialize

def initialize
  @list = []
end

def match(addr)

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