From e49d2a9fa5a485c33a250ce843d44fc6dedea8b5 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 8 Jul 2024 21:37:15 +0200 Subject: Kernel/Net: Don't use kmalloc to create send buffers Current method is also really bad since it uses multiple copies when it should instead just copy to the send buffer of the network card directly. But I have other things that I want to prioritize first. --- kernel/socket.h | 1 - 1 file changed, 1 deletion(-) (limited to 'kernel/socket.h') diff --git a/kernel/socket.h b/kernel/socket.h index 35074a1..efe0104 100644 --- a/kernel/socket.h +++ b/kernel/socket.h @@ -40,7 +40,6 @@ struct UdpConnection { }; struct TcpConnection { - int state; u16 incoming_port; -- cgit v1.2.3