Introduce reply_mix, to still get some varlen on old API

This commit is contained in:
Philippe Teuwen 2019-04-20 03:17:19 +02:00
commit a7773b3395
5 changed files with 64 additions and 22 deletions

View file

@ -81,7 +81,8 @@ typedef struct {
typedef struct {
uint32_t magic;
uint16_t length; // length of the variable part, 0 if none.
uint16_t length : 15; // length of the variable part, 0 if none.
bool ng : 1;
int16_t status;
uint16_t cmd;
} PACKED PacketResponseNGPreamble;