summaryrefslogtreecommitdiff
path: root/Kernel/Net/UDP.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-03 21:17:35 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-03 21:20:13 +0200
commit27f699ef0c8c2dce0f1dff19eef25f02e3da397e (patch)
tree52f95be1d05ba2a621d3bb8ac9129341f8d9973b /Kernel/Net/UDP.h
parentc4c4bbc5ba5119e9ccc8ded948b26e7c4851a909 (diff)
downloadserenity-27f699ef0c8c2dce0f1dff19eef25f02e3da397e.zip
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)
Diffstat (limited to 'Kernel/Net/UDP.h')
-rw-r--r--Kernel/Net/UDP.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/Kernel/Net/UDP.h b/Kernel/Net/UDP.h
index 7ec39719cd..61718a8f06 100644
--- a/Kernel/Net/UDP.h
+++ b/Kernel/Net/UDP.h
@@ -8,26 +8,26 @@ public:
UDPPacket() {}
~UDPPacket() {}
- word source_port() const { return m_source_port; }
- void set_source_port(word port) { m_source_port = port; }
+ u16 source_port() const { return m_source_port; }
+ void set_source_port(u16 port) { m_source_port = port; }
- word destination_port() const { return m_destination_port; }
- void set_destination_port(word port) { m_destination_port = port; }
+ u16 destination_port() const { return m_destination_port; }
+ void set_destination_port(u16 port) { m_destination_port = port; }
- word length() const { return m_length; }
- void set_length(word length) { m_length = length; }
+ u16 length() const { return m_length; }
+ void set_length(u16 length) { m_length = length; }
- word checksum() const { return m_checksum; }
- void set_checksum(word checksum) { m_checksum = checksum; }
+ 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<word> m_source_port;
- NetworkOrdered<word> m_destination_port;
- NetworkOrdered<word> m_length;
- NetworkOrdered<word> m_checksum;
+ NetworkOrdered<u16> m_source_port;
+ NetworkOrdered<u16> m_destination_port;
+ NetworkOrdered<u16> m_length;
+ NetworkOrdered<u16> m_checksum;
};
static_assert(sizeof(UDPPacket) == 8);