summaryrefslogtreecommitdiffstats
path: root/tests/py/ip/ip.t.json.got
blob: 07ab4e35df9cd4d84018086c63d98b412f54d4dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# ip frag-off & 0x1fff != 0x0
[
    {
        "match": {
            "left": {
                "&": [
                    {
                        "payload": {
                            "field": "frag-off",
                            "protocol": "ip"
                        }
                    },
                    8191
                ]
            },
            "op": "!=",
            "right": 0
        }
    }
]

# ip frag-off & 0x2000 != 0x0
[
    {
        "match": {
            "left": {
                "&": [
                    {
                        "payload": {
                            "field": "frag-off",
                            "protocol": "ip"
                        }
                    },
                    8192
                ]
            },
            "op": "!=",
            "right": 0
        }
    }
]

# ip frag-off & 0x4000 != 0x0
[
    {
        "match": {
            "left": {
                "&": [
                    {
                        "payload": {
                            "field": "frag-off",
                            "protocol": "ip"
                        }
                    },
                    16384
                ]
            },
            "op": "!=",
            "right": 0
        }
    }
]