| 1726 | |
| 1727 | |
| 1728 | class BSSTerminationDuration(Packet): |
| 1729 | name = "BSS Termination Duration" |
| 1730 | fields_desc = [ |
| 1731 | ByteField("id", 4), |
| 1732 | ByteField("len", 10), |
| 1733 | LELongField("TSF", 0), |
| 1734 | LEShortField("duration", 0) |
| 1735 | ] |
| 1736 | |
| 1737 | def extract_padding(self, s): |
| 1738 | return "", s |
| 1739 | |
| 1740 | |
| 1741 | class NeighborReport(Packet): |
no test coverage detected
searching dependent graphs…