blob: 2f08fdf6e4e6dbb5fac26d55773f740edab89079 (
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
|
// Copyright (C) 2018 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/packet_queue_ring.h>
#include <dhcp/packet_queue_mgr6.h>
#include <boost/scoped_ptr.hpp>
namespace isc {
namespace dhcp {
const std::string PacketQueueMgr6::DEFAULT_QUEUE_TYPE6 = "kea-ring6";
PacketQueueMgr6::PacketQueueMgr6() {
// Register default queue factory
registerPacketQueueFactory(DEFAULT_QUEUE_TYPE6, [](data::ConstElementPtr parameters)
-> PacketQueue6Ptr {
size_t capacity;
try {
capacity = data::SimpleParser::getInteger(parameters, "capacity");
} catch (const std::exception& ex) {
isc_throw(InvalidQueueParameter, DEFAULT_QUEUE_TYPE6 << " factory:"
" 'capacity' parameter is missing/invalid: " << ex.what());
}
PacketQueue6Ptr queue(new PacketQueueRing6(DEFAULT_QUEUE_TYPE6, capacity));
return (queue);
});
}
} // end of isc::dhcp namespace
} // end of isc namespace
|