summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/dumps/delete_element_catchall.nft
blob: 14054f4dc4d5cf3cb450a9600ba765c49a939563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
table ip x {
	map m {
		typeof ct bytes : meta priority
		flags interval
		elements = { * : 1:3 }
	}

	chain y {
		type filter hook output priority filter; policy accept;
		meta priority set ct bytes map @m
	}
}