Add a marked filter

This commit is contained in:
Shadab Zafar 2016-07-20 14:59:58 +05:30
parent 6c05a0c908
commit cc98b9c32f

View File

@ -80,6 +80,14 @@ class FErr(_Action):
return True if f.error else False
class FMarked(_Action):
code = "marked"
help = "Match marked flows"
def __call__(self, f):
return f.marked
class FHTTP(_Action):
code = "http"
help = "Match HTTP flows"
@ -398,6 +406,7 @@ filt_unary = [
FAsset,
FErr,
FHTTP,
FMarked,
FReq,
FResp,
FTCP,