summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/optimizations/dumps/merge_stmts_vmap.nft
blob: 5a9b3006743b327a2844dbe528cadd552b8e60df (plain)
1
2
3
4
5
6
7
8
9
table ip x {
	chain y {
		ct state vmap { invalid : drop, established : accept, related : accept }
	}

	chain z {
		tcp dport vmap { 1 : accept, 2-3 : drop, 4 : accept }
	}
}