Change FEC status message to avoid truncating large frames

This commit is contained in:
Cameron Gutman
2023-08-19 11:37:44 -05:00
parent 78e06eb613
commit e05ee6dfc8
2 changed files with 11 additions and 11 deletions

View File

@@ -43,16 +43,16 @@ typedef struct _SS_PING {
} SS_PING, *PSS_PING;
// Fields are big-endian
#define SS_FRAME_FEC_PTYPE 0x5501
#define SS_FRAME_FEC_PTYPE 0x5502
typedef struct _SS_FRAME_FEC_STATUS {
uint32_t frameIndex;
uint16_t highestReceivedSequenceNumber;
uint16_t nextContiguousSequenceNumber;
uint8_t missingPacketsBeforeHighestReceived;
uint8_t totalDataPackets;
uint8_t totalParityPackets;
uint8_t receivedDataPackets;
uint8_t receivedParityPackets;
uint16_t missingPacketsBeforeHighestReceived;
uint16_t totalDataPackets;
uint16_t totalParityPackets;
uint16_t receivedDataPackets;
uint16_t receivedParityPackets;
uint8_t fecPercentage;
uint8_t multiFecBlockIndex;
uint8_t multiFecBlockCount;