2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2019-03-10 22:59:23 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-08-25 16:11:15 +03:00
|
|
|
#include <AK/Endian.h>
|
2020-04-04 14:18:28 +03:00
|
|
|
#include <AK/MACAddress.h>
|
2019-03-10 22:59:23 +03:00
|
|
|
|
2019-12-14 13:07:37 +03:00
|
|
|
#pragma GCC diagnostic ignored "-Warray-bounds"
|
|
|
|
|
2020-12-31 00:44:54 +03:00
|
|
|
class [[gnu::packed]] EthernetFrameHeader {
|
2019-03-10 22:59:23 +03:00
|
|
|
public:
|
2021-02-28 16:42:08 +03:00
|
|
|
EthernetFrameHeader() = default;
|
|
|
|
~EthernetFrameHeader() = default;
|
2019-03-10 22:59:23 +03:00
|
|
|
|
|
|
|
MACAddress destination() const { return m_destination; }
|
2022-04-01 20:58:27 +03:00
|
|
|
void set_destination(MACAddress const& address) { m_destination = address; }
|
2019-03-10 22:59:23 +03:00
|
|
|
|
|
|
|
MACAddress source() const { return m_source; }
|
2022-04-01 20:58:27 +03:00
|
|
|
void set_source(MACAddress const& address) { m_source = address; }
|
2019-03-10 22:59:23 +03:00
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
u16 ether_type() const { return m_ether_type; }
|
|
|
|
void set_ether_type(u16 ether_type) { m_ether_type = ether_type; }
|
2019-03-10 22:59:23 +03:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void const* payload() const { return &m_payload[0]; }
|
2019-03-11 01:40:09 +03:00
|
|
|
void* payload() { return &m_payload[0]; }
|
2019-03-10 22:59:23 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
MACAddress m_destination;
|
|
|
|
MACAddress m_source;
|
2019-07-03 22:17:35 +03:00
|
|
|
NetworkOrdered<u16> m_ether_type;
|
|
|
|
u32 m_payload[0];
|
2019-03-10 22:59:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(EthernetFrameHeader) == 14);
|