summaryrefslogtreecommitdiff
path: root/Kernel/Net/UDP.h
blob: 61718a8f06923a9a357e8e7ae5a4b87ebb0f210c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#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);