You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
The pattern payload protocol framesize is variable and is calculated based on the frameLength and the sum of all protocol frame sizes.
However, when building the frame value, for a calculated size of 0, pattern payload still adds one byte. This is due to this very old code in payload.cpp (not sure why it was added) -
// FIXME: Hack! Bad! Bad! Very Bad!!!
if (dataLen <= 0)
dataLen = 1;
The text was updated successfully, but these errors were encountered:
The pattern payload protocol framesize is variable and is calculated based on the frameLength and the sum of all protocol frame sizes.
However, when building the frame value, for a calculated size of 0, pattern payload still adds one byte. This is due to this very old code in payload.cpp (not sure why it was added) -
The text was updated successfully, but these errors were encountered: