summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0040mark_shift_1.nft
blob: 56ec8dc766cab80da8cce6fe45deb083da9be7ad (plain)
1
2
3
4
5
6
table ip t {
	chain c {
		type filter hook input priority mangle; policy accept;
		iif "lo" ct mark & 0x000000ff == 0x00000010 meta mark set ct mark >> 8
	}
}