Charles Chan | 339bfde | 2016-09-19 19:13:36 -0700 | [diff] [blame] | 1 | #version 4 |
| 2 | |
Pier Ventre | 1821263 | 2016-10-24 11:49:41 -0700 | [diff] [blame] | 3 | // Here we define the general structures for the OFDPA extensions |
| 4 | |
| 5 | // This structure represents an ofdpa experimental action |
| 6 | // See ofdpa_actions for further specifications |
| 7 | struct of_action_ofdpa : of_action_experimenter { |
| 8 | uint16_t type == 65535; |
| 9 | uint16_t len; |
| 10 | uint32_t experimenter == 0x1018; |
| 11 | uint16_t exp_type == ?; |
| 12 | pad(6); |
Charles Chan | 339bfde | 2016-09-19 19:13:36 -0700 | [diff] [blame] | 13 | }; |
Pier Ventre | 1821263 | 2016-10-24 11:49:41 -0700 | [diff] [blame] | 14 | |