]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1980] add missing headers in timer_mgr.cc
authorAndrei Pavel <andrei@isc.org>
Thu, 29 Jul 2021 18:33:42 +0000 (21:33 +0300)
committerAndrei Pavel <andrei@isc.org>
Thu, 12 Aug 2021 16:03:59 +0000 (19:03 +0300)
src/lib/dhcpsrv/timer_mgr.cc

index f71b768ba0c44cce9880be905531c4f1cc3177e0..0f3b68f1a9bd975f996e230bc5edd15678cf2a78 100644 (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>
 
 #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;