2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 05:27:55 +00:00

[#1980] add missing headers in timer_mgr.cc

This commit is contained in:
Andrei Pavel 2021-07-29 21:33:42 +03:00
parent efb04ecb94
commit 2bba96164f
No known key found for this signature in database
GPG Key ID: 86E9385BC2203766

View File

@ -1,11 +1,12 @@
// Copyright (C) 2016-2020 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2016-2021 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 <asiolink/asio_wrapper.h>
#include <asiolink/interval_timer.h>
#include <asiolink/io_service.h>
#include <dhcpsrv/dhcpsrv_log.h>
#include <dhcpsrv/timer_mgr.h>
@ -14,9 +15,16 @@
#include <boost/scoped_ptr.hpp>
#include <exception>
#include <functional>
#include <map>
#include <mutex>
#include <ostream>
#include <string>
#include <utility>
#include <stddef.h>
using namespace isc;
using namespace isc::asiolink;
using namespace isc::util;