summaryrefslogtreecommitdiffstats
path: root/tests/shell/features/dynset_op_delete.nft
blob: 125b4526bbc37a07811dba1230ec55e53c3d0614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# d0a8d877da97 ("netfilter: nft_dynset: support for element deletion")
# v5.4-rc1~131^2~59^2~4
table ip x {
	set s {
		flags dynamic;
		type inet_service;
	}

	chain y {
		delete @s { tcp dport }
	}
}