/// @brief Returns interface index.
///
/// @return interface index
- uint32_t getIndex() const { return ifindex_; }
+ int64_t getIndex() const { return ifindex_; }
/// @brief Returns interface name.
///
std::string name_;
/// Interface index (a value that uniquely identifies an interface).
- int ifindex_;
+ int64_t ifindex_;
/// List of assigned addresses.
AddressCollection addrs_;
boost::multi_index::hashed_unique<
// Use the interface index as the key.
boost::multi_index::const_mem_fun<
- Iface, uint32_t, &Iface::getIndex
+ Iface, int64_t, &Iface::getIndex
>
>,
// Start definition of index #2.
-// Copyright (C) 2014-2019 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2014-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