summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0018check_jump_loop_1.nft
blob: bdd0ead778cb3c1822c7356a8f96ac68715fc671 (plain)
1
2
3
4
5
6
7
8
9
table ip filter {
	chain ap1 {
		type filter hook input priority filter; policy accept;
		jump ap2
	}

	chain ap2 {
	}
}