(cls, f, protover=PROTO_VERSION)
| 437 | |
| 438 | @classmethod |
| 439 | def msg_deser(cls, f, protover=PROTO_VERSION): |
| 440 | c = cls() |
| 441 | c.nonce = struct.unpack(b"<Q", ser_read(f,8))[0] |
| 442 | return c |
| 443 | |
| 444 | def msg_ser(self, f): |
| 445 | f.write(struct.pack(b"<Q", self.nonce)) |
nothing calls this directly
no test coverage detected