Kernel: Print to debug log ICMP unreachable messages

These messages should be forwarded to underlying sockets
This commit is contained in:
2024-02-25 21:32:37 +02:00
parent 6ebfe05fce
commit efdc4817bb
2 changed files with 8 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ namespace Kernel
enum ICMPType : uint8_t
{
EchoReply = 0x00,
DestinationUnreachable = 0x03,
EchoRequest = 0x08,
};