| 588 | |
| 589 | |
| 590 | class NegotiateProtocolVersion(_ZeroPadding): |
| 591 | name = "Negotiate Protocol Version Response" |
| 592 | fields_desc = [ |
| 593 | ByteTagField(b"v"), |
| 594 | FieldLenField( |
| 595 | "len", None, fmt="I", length_of="option", adjust=lambda pkt, x: x + 12 |
| 596 | ), |
| 597 | SignedIntField("min_minor_version", 0), |
| 598 | SignedIntField("unrecognized_options", 0), |
| 599 | StrNullField("option", None), |
| 600 | ] |
| 601 | |
| 602 | |
| 603 | class FunctionCallResponse(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…