| 554 | |
| 555 | |
| 556 | class NoticeResponse(_ZeroPadding): |
| 557 | name = "Notice Response" |
| 558 | fields_desc = [ |
| 559 | ByteTagField(b"N"), |
| 560 | FieldLenField( |
| 561 | "len", None, length_of="notice_fields", fmt="I", adjust=lambda pkt, x: x + 5 |
| 562 | ), |
| 563 | FieldListField( |
| 564 | "notice_fields", |
| 565 | [], |
| 566 | ErrorResponseField("value", None), |
| 567 | length_from=lambda pkt: pkt.len - 5, |
| 568 | ), |
| 569 | ByteField("terminator", None), |
| 570 | ] |
| 571 | |
| 572 | |
| 573 | class NotificationResponse(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…