/* ------------------------------------------- Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved. ------------------------------------------- */ #pragma once #include #include #include #define kMACAddrLen (12) namespace NeOS { class MacAddressGetter; /// \brief This retrieves the MAC address of the device. /// \note Listens for the current NIC. class MacAddressGetter final { public: explicit MacAddressGetter() = default; public: KString& AsString(); Array& AsBytes(); }; } // namespace NeOS