diff options
author | Anton Kling <anton@kling.gg> | 2024-02-16 18:28:14 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-02-16 18:28:14 +0100 |
commit | 413d09388bf33c658f3e71b18e4b069f18461393 (patch) | |
tree | 5df4e31367142bbf1c8285c51366f2d9398135ca /kernel/socket.h | |
parent | 3922adcdec5bd003b4106ffce79c28553bc40c15 (diff) |
General cleanup
Diffstat (limited to 'kernel/socket.h')
-rw-r--r-- | kernel/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/socket.h b/kernel/socket.h index 954ee4d..f765fb7 100644 --- a/kernel/socket.h +++ b/kernel/socket.h @@ -2,6 +2,7 @@ #define SOCKET_H #include <fs/fifo.h> #include <fs/vfs.h> +#include <lib/buffered_write.h> #include <stddef.h> #include <typedefs.h> @@ -46,6 +47,7 @@ struct INCOMING_TCP_CONNECTION { u16 n_port; u16 dst_port; FIFO_FILE *data_file; + struct buffered buffer; u8 *has_data_ptr; u8 is_used; u32 ack_num; |