Kernel: Implement super simple TCP stack

No SACK support and windows are fixed size
This commit is contained in:
2024-02-12 04:27:50 +02:00
parent ba06269b14
commit 435636a655
6 changed files with 804 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ namespace Kernel
enum NetworkProtocol : uint8_t
{
ICMP = 0x01,
TCP = 0x06,
UDP = 0x11,
};