diff options
author | Anton Kling <anton@kling.gg> | 2023-11-22 18:34:00 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-22 18:34:00 +0100 |
commit | b3866b0442f55b97833981a99c601f2143d10315 (patch) | |
tree | 2b0ae716da1e0d22311ecb119cc8d5cb2bbed822 /kernel/socket.h | |
parent | 615fb35efa8b13b7109e6974f86b295238163ebc (diff) |
Kernel/RTL8139/Networking fixes
This is just a commit containing multiple fixes since I am too lazy to
split them up.
Diffstat (limited to 'kernel/socket.h')
-rw-r--r-- | kernel/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/socket.h b/kernel/socket.h index 5e8c3b1..954ee4d 100644 --- a/kernel/socket.h +++ b/kernel/socket.h @@ -46,6 +46,7 @@ struct INCOMING_TCP_CONNECTION { u16 n_port; u16 dst_port; FIFO_FILE *data_file; + u8 *has_data_ptr; u8 is_used; u32 ack_num; u32 seq_num; |