serenity/Kernel/Net/UDP.h
Andreas Kling 27f699ef0c AK: Rename the common integer typedefs to make it obvious what they are.
These types can be picked up by including <AK/Types.h>:

* u8, u16, u32, u64 (unsigned)
* i8, i16, i32, i64 (signed)
2019-07-03 21:20:13 +02:00

34 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);