| 571 | |
| 572 | |
| 573 | class NotificationResponse(_ZeroPadding): |
| 574 | name = "Password Request Response" |
| 575 | fields_desc = [ |
| 576 | ByteTagField(b"A"), |
| 577 | _FieldsLenField( |
| 578 | "len", |
| 579 | None, |
| 580 | fmt="I", |
| 581 | length_of=("channel", "payload"), |
| 582 | adjust=lambda pkt, x: x + 8, |
| 583 | ), |
| 584 | SignedIntField("process_id", 0), |
| 585 | StrNullField("channel", None), |
| 586 | StrNullField("payload", None), |
| 587 | ] |
| 588 | |
| 589 | |
| 590 | class NegotiateProtocolVersion(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…