| 462 | |
| 463 | |
| 464 | class SCTPChunkParamRandom(_SCTPChunkParam, Packet): |
| 465 | fields_desc = [ShortEnumField("type", 0x8002, sctpchunkparamtypes), |
| 466 | FieldLenField("len", None, length_of="random", |
| 467 | adjust=lambda pkt, x:x + 4), |
| 468 | PadField(StrLenField("random", RandBin(32), |
| 469 | length_from=lambda pkt: pkt.len - 4), |
| 470 | 4, padwith=b"\x00"), ] |
| 471 | |
| 472 | |
| 473 | class SCTPChunkParamChunkList(_SCTPChunkParam, Packet): |
nothing calls this directly
no test coverage detected