| 470 | |
| 471 | |
| 472 | class PPP_ECP_Option_OUI(PPP_ECP_Option): |
| 473 | fields_desc = [ |
| 474 | ByteEnumField("type", 0, _PPP_ecpopttypes), |
| 475 | FieldLenField("len", None, length_of="data", fmt="B", |
| 476 | adjust=lambda _, val: val + 6), |
| 477 | OUIField("oui", 0), |
| 478 | ByteField("subtype", 0), |
| 479 | StrLenField("data", "", length_from=lambda pkt: pkt.len - 6), |
| 480 | ] |
| 481 | |
| 482 | |
| 483 | class PPP_ECP(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…