blob: 79823c2d7fd923f9bbc3744d4af1d55aa06c41c2 (
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
24
|
// 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
: m_promisc(false)
{
std::fill(std::begin(m_mac), std::end(m_mac), 0);
}
} // namespace osd
|