diff options
Diffstat (limited to 'src/lib/dhcp/packet_queue_mgr6.cc')
-rw-r--r-- | src/lib/dhcp/packet_queue_mgr6.cc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/lib/dhcp/packet_queue_mgr6.cc b/src/lib/dhcp/packet_queue_mgr6.cc new file mode 100644 index 0000000..2f08fdf --- /dev/null +++ b/src/lib/dhcp/packet_queue_mgr6.cc @@ -0,0 +1,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 |