(self)
| 268 | raise BMProtoInsufficientDataError() |
| 269 | |
| 270 | def bm_command_error(self): |
| 271 | fatalStatus, banTime, inventoryVector, errorText = self.decode_payload_content("vvlsls") |
| 272 | logger.error("%s:%i error: %i, %s", self.destination.host, self.destination.port, fatalStatus, errorText) |
| 273 | return True |
| 274 | |
| 275 | def bm_command_getdata(self): |
| 276 | items = self.decode_payload_content("l32s") |
nothing calls this directly
no test coverage detected