Total Complexity | 0 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | """Flow Table Modification message.""" |
||
11 | class Table(IntEnum): |
||
12 | """Table numbering. Tables can use any number up to OFPT_MAX.""" |
||
13 | |||
14 | #: Last usable table number. |
||
15 | OFPTT_MAX = 0xfe |
||
16 | # Fake tables. |
||
17 | #: Wildcard table used for table config, flow stats and flow deletes. |
||
18 | OFPTT_ALL = 0xff |
||
19 | |||
44 |