Murat Parlakisik | f95672c | 2016-12-05 00:53:17 -0800 | [diff] [blame] | 1 | #version 6 |
| 2 | |
| 3 | struct of_oxm_tcp_flags : of_oxm { |
| 4 | uint32_t type_len == 0x80005402; |
| 5 | uint8_t value; |
| 6 | }; |
| 7 | |
| 8 | struct of_oxm_tcp_flags_masked : of_oxm { |
| 9 | uint32_t type_len == 0x80005504; |
| 10 | uint8_t value; |
| 11 | uint8_t value_mask; |
| 12 | }; |
| 13 | |
| 14 | struct of_oxm_actset_output : of_oxm { |
| 15 | uint32_t type_len == 0x80005604; |
| 16 | uint8_t value; |
| 17 | }; |
| 18 | |
| 19 | struct 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 | |
| 26 | struct of_oxm_packet_type : of_oxm { |
| 27 | uint32_t type_len == 0x80005804; |
| 28 | uint8_t value; |
| 29 | }; |
| 30 | |
| 31 | struct of_oxm_packet_type_masked : of_oxm { |
| 32 | uint32_t type_len == 0x80005908; |
| 33 | uint8_t value; |
| 34 | uint8_t value_mask; |
| 35 | }; |