diff options
author | Anton Kling <anton@kling.gg> | 2024-07-04 20:00:12 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-07-04 20:00:12 +0200 |
commit | f89eef4733b7905dbf362cbde9aebb2dd0dcfe7d (patch) | |
tree | 3c7a3940c735eaf40a72902552a3be701e2b1d49 /kernel/socket.h | |
parent | 7d7f0aa9595bedf50083fb89dae049c1f064ca98 (diff) |
PIT: Fix dumb bug
The incorrect timer was being used for TCP ACK flush
Diffstat (limited to 'kernel/socket.h')
-rw-r--r-- | kernel/socket.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/socket.h b/kernel/socket.h index e881111..e0cf92f 100644 --- a/kernel/socket.h +++ b/kernel/socket.h @@ -47,7 +47,6 @@ struct TcpConnection { u32 outgoing_ip; u16 outgoing_port; - int unhandled_packet; struct ringbuffer incoming_buffer; struct ringbuffer outgoing_buffer; |