mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 22:08:59 +00:00
12 lines
194 B
C++
12 lines
194 B
C++
#include <Kernel/NetworkAdapter.h>
|
|
#include <Kernel/StdLib.h>
|
|
|
|
NetworkAdapter::NetworkAdapter()
|
|
{
|
|
memset(&m_mac_address, 0, sizeof(m_mac_address));
|
|
}
|
|
|
|
NetworkAdapter::~NetworkAdapter()
|
|
{
|
|
}
|
|
|