mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-12 03:01:04 +00:00
13 lines
194 B
C++
13 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()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|