mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +00:00
Kernel/AK: Add is_zero helpers for IP and MAC addresses
This commit is contained in:
parent
fac1148679
commit
4a4e66b2d0
2 changed files with 10 additions and 0 deletions
|
@ -40,6 +40,11 @@ public:
|
|||
return String::format("%02x:%02x:%02x:%02x:%02x:%02x", m_data[0], m_data[1], m_data[2], m_data[3], m_data[4], m_data[5]);
|
||||
}
|
||||
|
||||
bool is_zero() const
|
||||
{
|
||||
return m_data[0] == 0 && m_data[1] == 0 && m_data[2] == 0 && m_data[3] == 0 && m_data[4] == 0 && m_data[5] == 0;
|
||||
}
|
||||
|
||||
private:
|
||||
u8 m_data[6];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue