(self, anchor)
| 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) |
| 350 | if _pf_context['Xtoken']: |
| 351 | pfctl('-X %s' % _pf_context['Xtoken'].pop().decode("ASCII")) |
| 352 | |
| 353 | def add_anchors(self, anchor): |
| 354 | # before adding anchors and rules we must override the skip lo |
no test coverage detected