mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
27f699ef0c
These types can be picked up by including <AK/Types.h>: * u8, u16, u32, u64 (unsigned) * i8, i16, i32, i64 (signed)
33 lines
890 B
C++
33 lines
890 B
C++
#pragma once
|
|
|
|
#include <Kernel/Net/IPv4.h>
|
|
|
|
class [[gnu::packed]] UDPPacket
|
|
{
|
|
public:
|
|
UDPPacket() {}
|
|
~UDPPacket() {}
|
|
|
|
u16 source_port() const { return m_source_port; }
|
|
void set_source_port(u16 port) { m_source_port = port; }
|
|
|
|
u16 destination_port() const { return m_destination_port; }
|
|
void set_destination_port(u16 port) { m_destination_port = port; }
|
|
|
|
u16 length() const { return m_length; }
|
|
void set_length(u16 length) { m_length = length; }
|
|
|
|
u16 checksum() const { return m_checksum; }
|
|
void set_checksum(u16 checksum) { m_checksum = checksum; }
|
|
|
|
const void* payload() const { return this + 1; }
|
|
void* payload() { return this + 1; }
|
|
|
|
private:
|
|
NetworkOrdered<u16> m_source_port;
|
|
NetworkOrdered<u16> m_destination_port;
|
|
NetworkOrdered<u16> m_length;
|
|
NetworkOrdered<u16> m_checksum;
|
|
};
|
|
|
|
static_assert(sizeof(UDPPacket) == 8);
|