blob: a50a5c2e7c5f9bd525588d4aa705ded954abe161 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright (C) 2015-2020 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <dhcp/iface_mgr.h>
#include <dhcpsrv/testutils/dhcp4o6_test_ipc.h>
#include <functional>
namespace isc {
namespace dhcp {
namespace test {
Dhcp4o6TestIpc::Dhcp4o6TestIpc(uint16_t port, EndpointType endpoint_type)
: desired_port_(port), endpoint_type_(endpoint_type), pkt_received_() {
}
void
Dhcp4o6TestIpc::open() {
// Use the base IPC to open the socket.
socket_fd_ = Dhcp4o6IpcBase::open(desired_port_, endpoint_type_);
// If the socket has been opened correctly, register it in the @c IfaceMgr.
// BTW if it has not an exception has been thrown so it is only
// a sanity / recommended check.
if (socket_fd_ != -1) {
IfaceMgr& iface_mgr = IfaceMgr::instance();
iface_mgr.addExternalSocket(socket_fd_,
std::bind(&Dhcp4o6TestIpc::receiveHandler, this));
}
}
void
Dhcp4o6TestIpc::receiveHandler() {
pkt_received_ = receive();
}
} // end of isc::dhcp::test namespace
} // end of isc::dhcp namespace
} // end of isc namespace
|