(self)
| 342 | super(Darwin, self).__init__() |
| 343 | |
| 344 | def enable(self): |
| 345 | o = pfctl('-E') |
| 346 | _pf_context['Xtoken'].append(re.search(b'Token : (.+)', o[1]).group(1)) |
| 347 | |
| 348 | def disable(self, anchor): |
| 349 | pfctl('-a %s -F all' % anchor) |
no test coverage detected