mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
0dc9af5f7e
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
33 lines
902 B
C++
33 lines
902 B
C++
#pragma once
|
|
|
|
#include <Kernel/Net/IPv4.h>
|
|
|
|
class [[gnu::packed]] UDPPacket
|
|
{
|
|
public:
|
|
UDPPacket() {}
|
|
~UDPPacket() {}
|
|
|
|
word source_port() const { return m_source_port; }
|
|
void set_source_port(word port) { m_source_port = port; }
|
|
|
|
word destination_port() const { return m_destination_port; }
|
|
void set_destination_port(word port) { m_destination_port = port; }
|
|
|
|
word length() const { return m_length; }
|
|
void set_length(word length) { m_length = length; }
|
|
|
|
word checksum() const { return m_checksum; }
|
|
void set_checksum(word checksum) { m_checksum = checksum; }
|
|
|
|
const void* payload() const { return this + 1; }
|
|
void* payload() { return this + 1; }
|
|
|
|
private:
|
|
NetworkOrdered<word> m_source_port;
|
|
NetworkOrdered<word> m_destination_port;
|
|
NetworkOrdered<word> m_length;
|
|
NetworkOrdered<word> m_checksum;
|
|
};
|
|
|
|
static_assert(sizeof(UDPPacket) == 8);
|