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:
Andreas Kling 2019-03-14 00:20:44 +01:00
commit 66d55f8e0c
Notes: sideshowbarker 2024-07-19 15:03:55 +09:00
9 changed files with 36 additions and 18 deletions

View file

@ -95,8 +95,8 @@ bool Scheduler::pick_next()
}
if (process.state() == Process::BlockedConnect) {
ASSERT(process.m_blocked_connecting_socket);
if (process.m_blocked_connecting_socket->is_connected())
ASSERT(process.m_blocked_socket);
if (process.m_blocked_socket->is_connected())
process.unblock();
return true;
}