(cls, f, protover=PROTO_VERSION)
| 417 | |
| 418 | @classmethod |
| 419 | def msg_deser(cls, f, protover=PROTO_VERSION): |
| 420 | c = cls() |
| 421 | c.nonce = struct.unpack(b"<Q", ser_read(f, 8))[0] |
| 422 | return c |
| 423 | |
| 424 | def msg_ser(self, f): |
| 425 | f.write(struct.pack(b"<Q", self.nonce)) |
nothing calls this directly
no test coverage detected