mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-16 08:08:26 +00:00
This is all pretty rickety but we can now respond to "arping" from the host while running inside QEMU. Very cool. :^)
45 lines
910 B
C++
45 lines
910 B
C++
#pragma once
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <AK/AKString.h>
|
|
#include <AK/Types.h>
|
|
#include <Kernel/StdLib.h>
|
|
|
|
class [[gnu::packed]] IPv4Address {
|
|
public:
|
|
IPv4Address() { }
|
|
IPv4Address(const byte data[4])
|
|
{
|
|
memcpy(m_data, data, 4);
|
|
}
|
|
IPv4Address(byte a, byte b, byte c, byte d)
|
|
{
|
|
m_data[0] = a;
|
|
m_data[1] = b;
|
|
m_data[2] = c;
|
|
m_data[3] = d;
|
|
}
|
|
~IPv4Address() { }
|
|
|
|
byte operator[](int i) const
|
|
{
|
|
ASSERT(i >= 0 && i < 4);
|
|
return m_data[i];
|
|
}
|
|
|
|
String to_string() const
|
|
{
|
|
return String::format("%u.%u.%u.%u", m_data[0], m_data[1], m_data[2], m_data[3]);
|
|
}
|
|
|
|
bool operator==(const IPv4Address& other) const { return m_data_as_dword == other.m_data_as_dword; }
|
|
|
|
private:
|
|
union {
|
|
byte m_data[4];
|
|
dword m_data_as_dword;
|
|
};
|
|
};
|
|
|
|
static_assert(sizeof(IPv4Address) == 4);
|