A list of ACLEntry
objects. Used to implement the allow and deny halves of an ACL
Methods
- A
-
- M
-
- N
-
Class Public methods
Instance Public methods
add(str)
Link
Source:
show
| on GitHub
def add(str)
@list.push(ACLEntry.new(str))
end
match(addr)
Link
Matches addr
against each ACLEntry
in this list.
Source:
show
| on GitHub
def match(addr)
@list.each do |e|
return true if e.match(addr)
end
false
end