1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:57:34 +00:00

Kernel: Fix up the ICMP implementation to generate correct Echo replies.

Serenity now responds to ping. :^)
This commit is contained in:
Andreas Kling 2019-03-12 11:44:38 +01:00
parent 75e0ddd46a
commit 9858be636f
5 changed files with 66 additions and 28 deletions

View file

@ -26,7 +26,5 @@ private:
dword m_payload[0];
};
typedef dword EthernetFrameCheckSequence;
static_assert(sizeof(EthernetFrameHeader) == 14);