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