summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/dumps/typeof_raw_0.nft
blob: 499ff167f51de3d4b773e651532709cf3961fe8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
table inet t {
	set y {
		typeof ip daddr . @ih,32,32
		elements = { 1.1.1.1 . 0x14,
			     2.2.2.2 . 0x20 }
	}

	chain y {
		ip saddr . @ih,32,32 { 1.1.1.1 . 0x14, 2.2.2.2 . 0x1e }
		ip daddr . @ih,32,32 @y
	}
}