mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
fixed off 5 bytes for follow on fragment
This commit is contained in:
@@ -1927,7 +1927,7 @@ namespace transport
|
|||||||
isLast = false;
|
isLast = false;
|
||||||
}
|
}
|
||||||
buf[0] = eSSU2BlkFollowOnFragment;
|
buf[0] = eSSU2BlkFollowOnFragment;
|
||||||
htobe16buf (buf + 1, msgLen); // size
|
htobe16buf (buf + 1, msgLen + 5); // size
|
||||||
fragmentNum++;
|
fragmentNum++;
|
||||||
buf[3] = fragmentNum << 1;
|
buf[3] = fragmentNum << 1;
|
||||||
if (isLast) buf[3] |= 0x01;
|
if (isLast) buf[3] |= 0x01;
|
||||||
|
|||||||
Reference in New Issue
Block a user