| 391 | |
| 392 | |
| 393 | class MPacketPreamble(Packet): |
| 394 | # IEEE 802.3br Figure 99-3 |
| 395 | name = "MPacket Preamble" |
| 396 | fields_desc = [StrFixedLenField("preamble", b"", length=8), |
| 397 | FCSField("fcs", 0, fmt="!I")] |
| 398 | |
| 399 | |
| 400 | class SNAP(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…