2019-03-10 22:59:23 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-04-02 20:54:38 +03:00
|
|
|
#include <Kernel/Net/MACAddress.h>
|
2019-03-12 14:43:30 +03:00
|
|
|
#include <Kernel/NetworkOrdered.h>
|
2019-03-10 22:59:23 +03:00
|
|
|
|
|
|
|
class [[gnu::packed]] EthernetFrameHeader {
|
|
|
|
public:
|
|
|
|
EthernetFrameHeader() { }
|
|
|
|
~EthernetFrameHeader() { }
|
|
|
|
|
|
|
|
MACAddress destination() const { return m_destination; }
|
|
|
|
void set_destination(const MACAddress& address) { m_destination = address; }
|
|
|
|
|
|
|
|
MACAddress source() const { return m_source; }
|
|
|
|
void set_source(const MACAddress& address) { m_source = address; }
|
|
|
|
|
2019-03-12 14:43:30 +03:00
|
|
|
word ether_type() const { return m_ether_type; }
|
|
|
|
void set_ether_type(word ether_type) { m_ether_type = ether_type; }
|
2019-03-10 22:59:23 +03:00
|
|
|
|
2019-03-11 01:40:09 +03:00
|
|
|
const void* payload() const { return &m_payload[0]; }
|
|
|
|
void* payload() { return &m_payload[0]; }
|
2019-03-10 22:59:23 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
MACAddress m_destination;
|
|
|
|
MACAddress m_source;
|
2019-03-12 14:43:30 +03:00
|
|
|
NetworkOrdered<word> m_ether_type;
|
2019-03-11 01:40:09 +03:00
|
|
|
dword m_payload[0];
|
2019-03-10 22:59:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(EthernetFrameHeader) == 14);
|
|
|
|
|