]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1043] Post rebase updates
authorFrancis Dupont <fdupont@isc.org>
Tue, 7 Jul 2020 16:38:44 +0000 (18:38 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 8 Jul 2020 10:57:37 +0000 (12:57 +0200)
src/lib/dhcp/tests/iface_mgr_test_config.cc
src/lib/dhcp/tests/iface_mgr_test_config.h

index 39618b7f0abbcc3a288df319acffcf77d272f45d..c0689c36eb2e47b46db63a985bcccfc7fa74c4e9 100644 (file)
@@ -104,21 +104,21 @@ IfaceMgrTestConfig::createIface(const std::string &name, const int ifindex) {
 void
 IfaceMgrTestConfig::createIfaces() {
     // local loopback
-    addIface("lo", 0);
+    addIface("lo", LO_INDEX);
     addAddress("lo", IOAddress("127.0.0.1"));
     addAddress("lo", IOAddress("::1"));
     // eth0
-    addIface("eth0", 1);
+    addIface("eth0", ETH0_INDEX);
     addAddress("eth0", IOAddress("10.0.0.1"));
     addAddress("eth0", IOAddress("fe80::3a60:77ff:fed5:cdef"));
     addAddress("eth0", IOAddress("2001:db8:1::1"));
     // eth1
-    addIface("eth1", 2);
+    addIface("eth1", ETH1_INDEX);
     addAddress("eth1", IOAddress("192.0.2.3"));
     addAddress("eth1", IOAddress("192.0.2.5"));
     addAddress("eth1", IOAddress("fe80::3a60:77ff:fed5:abcd"));
     // eth1961
-    addIface("eth1961", 3);
+    addIface("eth1961", ETH1961_INDEX);
     addAddress("eth1961", IOAddress("198.51.100.1"));
     addAddress("eth1961", IOAddress("fe80::3a60:77ff:fed5:9876"));
 
index fa55ad305193acdb3848f84387afec59440762a0..26167e8f2d3de13a25d74282aaef6a6877809436 100644 (file)
@@ -24,6 +24,9 @@ const uint32_t ETH0_INDEX = 1;
 
 /// @brief Index of the eth1 fake interface.
 const uint32_t ETH1_INDEX = 2;
+
+/// @brief Index of the eth1961 fake interface.
+const uint32_t ETH1961_INDEX = 1962;
 //@}
 
 ///
@@ -130,7 +133,7 @@ struct FlagInactive6 {
 /// - eth1 #2
 ///   - 192.0.2.3
 ///   - fe80::3a60:77ff:fed5:abcd
-/// - eth1961
+/// - eth1961 #1962
 ///   - 198.51.100.1
 ///   - fe80::3a60:77ff:fed5:9876
 ///