1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 09:17:35 +00:00

TCP: Start working on auto-closing connections when we get FIN.

This commit is contained in:
Andreas Kling 2019-03-14 15:23:32 +01:00
parent 4629272135
commit 25e521f510
6 changed files with 35 additions and 6 deletions

View file

@ -36,6 +36,7 @@ private:
virtual int protocol_send(const void*, int) override;
virtual KResult protocol_connect() override;
virtual void protocol_allocate_source_port() override;
virtual bool protocol_is_disconnected() const override;
dword m_sequence_number { 0 };
dword m_ack_number { 0 };