blob: f5d2e4cd8520cfdb945eeef98d2a3c0b3b783d5c [file] [log] [blame]
Murat Parlakisikf95672c2016-12-05 00:53:17 -08001#version 6
2
3struct of_oxm_tcp_flags : of_oxm {
4 uint32_t type_len == 0x80005402;
5 uint8_t value;
6};
7
8struct of_oxm_tcp_flags_masked : of_oxm {
9 uint32_t type_len == 0x80005504;
10 uint8_t value;
11 uint8_t value_mask;
12};
13
14struct of_oxm_actset_output : of_oxm {
15 uint32_t type_len == 0x80005604;
16 uint8_t value;
17};
18
19struct of_oxm_actset_output_masked : of_oxm {
20 uint32_t type_len == 0x80005708;
21 of_port_no_t value;
22 of_port_no_t value_mask;
23};
24
25
26struct of_oxm_packet_type : of_oxm {
27 uint32_t type_len == 0x80005804;
28 uint8_t value;
29};
30
31struct of_oxm_packet_type_masked : of_oxm {
32 uint32_t type_len == 0x80005908;
33 uint8_t value;
34 uint8_t value_mask;
35};