| 286 | |
| 287 | |
| 288 | class RowDescription(_ZeroPadding): |
| 289 | name = "Row Description" |
| 290 | fields_desc = [ |
| 291 | ByteTagField(b"T"), |
| 292 | FieldLenField( |
| 293 | "len", None, fmt="I", length_of="cols", adjust=lambda pkt, x: x + 6 |
| 294 | ), |
| 295 | SignedShortField("numfields", 0), |
| 296 | PacketListField( |
| 297 | "cols", |
| 298 | [], |
| 299 | pkt_cls=ColumnDescription, |
| 300 | count_from=lambda pkt: pkt.numfields, |
| 301 | length_from=lambda pkt: pkt.len - 6, |
| 302 | ), |
| 303 | ] |
| 304 | |
| 305 | |
| 306 | class DataRow(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…