blob: f3715df9b124557108e5e908f2f3de5b54393a98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
/***************************************************************************
nethandler.cpp
OSD interface to virtual networking handlers
***************************************************************************/
#include "nethandler.h"
#include <algorithm>
namespace osd {
network_handler::network_handler() noexcept
{
std::fill(std::begin(m_mac), std::end(m_mac), 0);
}
} // namespace osd
|