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

Kernel: More work on Ethernet support.

This commit is contained in:
Andreas Kling 2019-03-10 23:40:09 +01:00
parent 97664fad60
commit 1678ac69ef
8 changed files with 62 additions and 9 deletions

View file

@ -16,13 +16,14 @@ public:
word ether_type() const { return (m_ether_type & 0xff) << 16 | ((m_ether_type >> 16) & 0xff); }
void set_ether_type(word ether_type) { m_ether_type = (ether_type & 0xff) << 16 | ((ether_type >> 16) & 0xff); }
const void* raw() const { return this; }
void* raw() { return this; }
const void* payload() const { return &m_payload[0]; }
void* payload() { return &m_payload[0]; }
private:
MACAddress m_destination;
MACAddress m_source;
word m_ether_type { 0 };
dword m_payload[0];
};
static_assert(sizeof(EthernetFrameHeader) == 14);