summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0027split_chains_0.nft
blob: 39198be1423cc268f21ae296fc75e87533b819c8 (plain)
1
2
3
4
5
6
7
8
9
table inet filter {
	chain x {
	}

	chain input {
		type filter hook input priority filter; policy accept;
		jump x
	}
}