Closed cnbeta closed 10 months ago
Describe the bug Bit mask used to decode a message header not contains bit6.
File:MessageHeader.cs Function: Decode
S = (byte)(s & 0b0111_111),
The integer literal 0b0111_111 should be 0b0111_1111 or 0b1111_111.
0b0111_1111
0b1111_111.
Describe the bug Bit mask used to decode a message header not contains bit6.
File:MessageHeader.cs Function: Decode
S = (byte)(s & 0b0111_111),
The integer literal 0b0111_111 should be
0b0111_1111
or0b1111_111.