summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0017masquerade_jump_1.nft
blob: 636e8440ea6f7aad655c76cc345b150d4fc1194c (plain)
1
2
3
4
5
6
7
8
9
table ip t {
	chain input {
		type filter hook input priority filter + 4; policy accept;
		jump c1
	}

	chain c1 {
	}
}