1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 21:47:43 +00:00

TCP: Collect the payload if present in a packet with FIN set.

This commit is contained in:
Andreas Kling 2019-03-14 15:28:23 +01:00
parent 25e521f510
commit f9569db1e5
3 changed files with 9 additions and 1 deletions

View file

@ -68,6 +68,8 @@ private:
word m_source_port { 0 };
word m_destination_port { 0 };
dword m_bytes_received { 0 };
bool m_can_read { false };
};