diff options
author | Thomas Markwalder <tmark@isc.org> | 2016-04-05 14:50:20 +0200 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2016-04-05 14:50:20 +0200 |
commit | 082f846f37cb32964c876b2bff5fcac82d1eaaf0 (patch) | |
tree | e0a0003655e53bf6853945e9e96318391bee3529 /src/lib/dhcp | |
parent | [master] Merge branch 'trac4300' (diff) | |
parent | [4243] Distcheck failure correction (diff) | |
download | kea-082f846f37cb32964c876b2bff5fcac82d1eaaf0.tar.xz kea-082f846f37cb32964c876b2bff5fcac82d1eaaf0.zip |
[master] Mitigate GCC 5.x optmizer issue in asiolink
Merged in trac4243.
Diffstat (limited to 'src/lib/dhcp')
-rw-r--r-- | src/lib/dhcp/iface_mgr.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib/dhcp/iface_mgr.cc b/src/lib/dhcp/iface_mgr.cc index 1d87d9416b..70561ba3bc 100644 --- a/src/lib/dhcp/iface_mgr.cc +++ b/src/lib/dhcp/iface_mgr.cc @@ -1,14 +1,11 @@ -// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2016 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> - -// This must be included before udp_endpoint.h -#include <boost/asio.hpp> - +#include <asiolink/asio_wrapper.h> #include <asiolink/io_error.h> #include <asiolink/udp_endpoint.h> #include <dhcp/dhcp4.h> |