mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 11:27:34 +00:00
IPv4: More work on the TCP implementation.
I can now establish a connection to my little test server on the host.
This commit is contained in:
parent
032d9d7065
commit
66d55f8e0c
9 changed files with 36 additions and 18 deletions
|
@ -42,8 +42,6 @@ public:
|
|||
|
||||
void did_receive(ByteBuffer&&);
|
||||
|
||||
Lock& lock() { return m_lock; }
|
||||
|
||||
word source_port() const { return m_source_port; }
|
||||
word destination_port() const { return m_destination_port; }
|
||||
|
||||
|
@ -78,7 +76,6 @@ private:
|
|||
dword m_tcp_ack_number { 0 };
|
||||
TCPState m_tcp_state { Disconnected };
|
||||
|
||||
Lock m_lock;
|
||||
bool m_can_read { false };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue