summaryrefslogtreecommitdiffstats
path: root/tests/py/inet/osf.t
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2018-08-07 17:45:15 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-08-07 17:52:48 +0200
commitec916a449903f30e00bf5d392ce84b0bb248363a (patch)
tree03d38fcc10a04c4a3716893a6856199ccaf52965 /tests/py/inet/osf.t
parent2a704dff296de5b3bbe9973d253f98a5556a2e87 (diff)
parser_bison: allow to use new osf expression from assignment statement
So the following rule to set the conntrack mark based on the OS passive recognition works: # nft add rule x y ct mark set osf name map { "Windows" : 1, "MacOs" : 2 } Fixes: 9f28b685b473 ("src: introduce passive OS fingerprint matching") Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/py/inet/osf.t')
-rw-r--r--tests/py/inet/osf.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/py/inet/osf.t b/tests/py/inet/osf.t
index 6533b84e..7cf90931 100644
--- a/tests/py/inet/osf.t
+++ b/tests/py/inet/osf.t
@@ -7,3 +7,4 @@
osf name "Linux";ok
osf name "morethansixteenbytes";fail
osf name ;fail
+ct mark set osf name map { "Windows" : 0x00000001, "MacOs" : 0x00000002 };ok