Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame^] | 1 | |
| 2 | # of_message specific controls |
| 3 | |
| 4 | # Do not include any arrays marked [0] |
| 5 | IGNORE_ZERO_ARRAYS = 1 |
| 6 | |
| 7 | # Do not include the ofp_header as a member in any structure |
| 8 | # This allows messages to be consistently generated as: |
| 9 | # explicit header declaration |
| 10 | # core member declaration |
| 11 | # variable length data |
| 12 | IGNORE_OFP_HEADER = 1 |
| 13 | |
| 14 | # Generate object equality functions |
| 15 | GEN_OBJ_EQUALITY = 1 |
| 16 | |
| 17 | # Generate object show functions |
| 18 | GEN_OBJ_SHOW = 1 |
| 19 | |
| 20 | # Generate lists of enum values |
| 21 | GEN_ENUM_VALUES_LIST = 0 |
| 22 | |
| 23 | # Generate dictionary of enum strings to values |
| 24 | GEN_ENUM_DICTIONARY = 1 |