We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The struct cm_mnbc_sound_indicate is wrong.
cm_mnbc_sound_indicate
It should be:
typedef struct __packed cm_mnbc_sound_indicate { struct ethernet_hdr ethernet; struct homeplug_fmi homeplug; uint8_t APPLICATION_TYPE; uint8_t SECURITY_TYPE; struct __packed { uint8_t SenderID [SLAC_UNIQUE_ID_LEN]; uint8_t CNT; uint8_t RunID [SLAC_RUNID_LEN]; uint8_t RSVD [8]; uint8_t RND [SLAC_RND_LEN]; } MSVarField; }
However, it is:
typedef struct __packed cm_mnbc_sound_indicate { struct ethernet_hdr ethernet; struct homeplug_fmi homeplug; uint8_t APPLICATION_TYPE; uint8_t SECURITY_TYPE; struct __packed { uint8_t SenderID [SLAC_UNIQUE_ID_LEN]; uint8_t CNT; uint8_t RunID [SLAC_RUNID_LEN]; uint8_t RND [SLAC_UNIQUE_ID_LEN]; } MSVarField; }
The text was updated successfully, but these errors were encountered:
Has this been fixed in master? I can confirm this causes malformed packets in sounding.
Sorry, something went wrong.
No branches or pull requests
The struct
cm_mnbc_sound_indicate
is wrong.It should be:
However, it is:
The text was updated successfully, but these errors were encountered: