Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 3 | #include "network_manager.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 4 | |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 5 | #include "ipaddress.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 6 | #include "network_config.hpp" |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 7 | #include "types.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 8 | #include "util.hpp" |
Ratan Gupta | 738a67f | 2017-04-21 10:38:05 +0530 | [diff] [blame] | 9 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 10 | #include <arpa/inet.h> |
| 11 | #include <dirent.h> |
| 12 | #include <net/if.h> |
| 13 | |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 14 | #include <algorithm> |
| 15 | #include <bitset> |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 16 | #include <filesystem> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 17 | #include <fstream> |
| 18 | #include <map> |
| 19 | #include <phosphor-logging/elog-errors.hpp> |
| 20 | #include <phosphor-logging/log.hpp> |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 21 | #include <string> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 22 | #include <xyz/openbmc_project/Common/error.hpp> |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 23 | |
William A. Kennington III | f1aa51c | 2019-02-12 19:58:11 -0800 | [diff] [blame] | 24 | constexpr char SYSTEMD_BUSNAME[] = "org.freedesktop.systemd1"; |
| 25 | constexpr char SYSTEMD_PATH[] = "/org/freedesktop/systemd1"; |
| 26 | constexpr char SYSTEMD_INTERFACE[] = "org.freedesktop.systemd1.Manager"; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 27 | constexpr auto FirstBootFile = "/var/lib/network/firstBoot_"; |
William A. Kennington III | f1aa51c | 2019-02-12 19:58:11 -0800 | [diff] [blame] | 28 | |
William A. Kennington III | 56ecc78 | 2021-10-07 18:44:50 -0700 | [diff] [blame] | 29 | constexpr char NETWORKD_BUSNAME[] = "org.freedesktop.network1"; |
| 30 | constexpr char NETWORKD_PATH[] = "/org/freedesktop/network1"; |
| 31 | constexpr char NETWORKD_INTERFACE[] = "org.freedesktop.network1.Manager"; |
| 32 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 33 | namespace phosphor |
| 34 | { |
| 35 | namespace network |
| 36 | { |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 37 | |
William A. Kennington III | d41db38 | 2021-11-09 20:42:29 -0800 | [diff] [blame] | 38 | extern std::unique_ptr<Timer> refreshObjectTimer; |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 39 | extern std::unique_ptr<Timer> reloadTimer; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 40 | using namespace phosphor::logging; |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 41 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Jiaqing Zhao | b685cb6 | 2022-04-12 22:57:34 +0800 | [diff] [blame] | 42 | using Argument = xyz::openbmc_project::Common::InvalidArgument; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 43 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 44 | Manager::Manager(sdbusplus::bus_t& bus, const char* objPath, |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 45 | const std::string& path) : |
Patrick Williams | 166b959 | 2022-03-30 16:09:16 -0500 | [diff] [blame] | 46 | details::VLANCreateIface(bus, objPath, |
| 47 | details::VLANCreateIface::action::defer_emit), |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 48 | bus(bus), objectPath(objPath) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 49 | { |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 50 | fs::path confDir(path); |
| 51 | setConfDir(confDir); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 52 | } |
| 53 | |
William A. Kennington III | 9a1d9af | 2021-11-09 17:51:05 -0800 | [diff] [blame^] | 54 | bool Manager::createDefaultNetworkFiles() |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 55 | { |
| 56 | auto isCreated = false; |
| 57 | try |
| 58 | { |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 59 | auto interfaceStrList = getInterfaces(); |
| 60 | for (const auto& interface : interfaceStrList) |
| 61 | { |
Michael Tritz | 08c34f4 | 2017-10-16 14:59:09 -0500 | [diff] [blame] | 62 | // if the interface has '.' in the name, it means that this is a |
| 63 | // VLAN - don't create the network file. |
| 64 | if (interface.find(".") != std::string::npos) |
| 65 | { |
| 66 | continue; |
| 67 | } |
| 68 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 69 | auto fileName = systemd::config::networkFilePrefix + interface + |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 70 | systemd::config::networkFileSuffix; |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 71 | |
| 72 | fs::path filePath = confDir; |
| 73 | filePath /= fileName; |
| 74 | |
| 75 | // create the interface specific network file |
William A. Kennington III | 9a1d9af | 2021-11-09 17:51:05 -0800 | [diff] [blame^] | 76 | // if not existing. |
| 77 | if (!fs::is_regular_file(filePath.string())) |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 78 | { |
| 79 | bmc::writeDHCPDefault(filePath.string(), interface); |
| 80 | log<level::INFO>("Created the default network file.", |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 81 | entry("INTERFACE=%s", interface.c_str())); |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 82 | isCreated = true; |
| 83 | } |
| 84 | } |
| 85 | } |
Patrick Williams | 5758db3 | 2021-10-06 12:29:22 -0500 | [diff] [blame] | 86 | catch (const std::exception& e) |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 87 | { |
| 88 | log<level::ERR>("Unable to create the default network file"); |
| 89 | } |
Alexander Filippov | 1ea3599 | 2021-03-26 13:10:05 +0300 | [diff] [blame] | 90 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 91 | return isCreated; |
| 92 | } |
| 93 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 94 | void Manager::setConfDir(const fs::path& dir) |
| 95 | { |
| 96 | confDir = dir; |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 97 | |
| 98 | if (!fs::exists(confDir)) |
| 99 | { |
| 100 | if (!fs::create_directories(confDir)) |
| 101 | { |
| 102 | log<level::ERR>("Unable to create the network conf dir", |
| 103 | entry("DIR=%s", confDir.c_str())); |
| 104 | elog<InternalFailure>(); |
| 105 | } |
| 106 | } |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | void Manager::createInterfaces() |
| 110 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 111 | // clear all the interfaces first |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 112 | interfaces.clear(); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 113 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 114 | auto interfaceStrList = getInterfaces(); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 115 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 116 | for (auto& interface : interfaceStrList) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 117 | { |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 118 | fs::path objPath = objectPath; |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 119 | auto index = interface.find("."); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 120 | |
| 121 | // interface can be of vlan type or normal ethernet interface. |
| 122 | // vlan interface looks like "interface.vlanid",so here by looking |
| 123 | // at the interface name we decide that we need |
| 124 | // to create the vlaninterface or normal physical interface. |
| 125 | if (index != std::string::npos) |
| 126 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 127 | // it is vlan interface |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 128 | auto interfaceName = interface.substr(0, index); |
| 129 | auto vlanid = interface.substr(index + 1); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 130 | uint32_t vlanInt = std::stoul(vlanid); |
| 131 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 132 | interfaces[interfaceName]->loadVLAN(vlanInt); |
Ratan Gupta | 6e8df63 | 2017-08-13 09:41:58 +0530 | [diff] [blame] | 133 | continue; |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 134 | } |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 135 | // normal ethernet interface |
| 136 | objPath /= interface; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 137 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 138 | auto dhcp = getDHCPValue(confDir, interface); |
Ratan Gupta | 34f96d6 | 2017-06-15 09:16:22 +0530 | [diff] [blame] | 139 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 140 | auto intf = std::make_shared<phosphor::network::EthernetInterface>( |
| 141 | bus, objPath.string(), dhcp, *this); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 142 | |
| 143 | intf->createIPAddressObjects(); |
William A. Kennington III | 0850579 | 2019-01-30 16:00:04 -0800 | [diff] [blame] | 144 | intf->createStaticNeighborObjects(); |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 145 | intf->loadNameServers(); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 146 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 147 | this->interfaces.emplace( |
| 148 | std::make_pair(std::move(interface), std::move(intf))); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 152 | void Manager::createChildObjects() |
| 153 | { |
William A. Kennington III | e056484 | 2021-10-23 16:02:22 -0700 | [diff] [blame] | 154 | routeTable.refresh(); |
| 155 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 156 | // creates the ethernet interface dbus object. |
| 157 | createInterfaces(); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 158 | |
| 159 | systemConf.reset(nullptr); |
| 160 | dhcpConf.reset(nullptr); |
| 161 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 162 | fs::path objPath = objectPath; |
| 163 | objPath /= "config"; |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 164 | |
| 165 | // create the system conf object. |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 166 | systemConf = std::make_unique<phosphor::network::SystemConfiguration>( |
Jiaqing Zhao | 24b5a61 | 2022-04-11 16:46:16 +0800 | [diff] [blame] | 167 | bus, objPath.string()); |
Ratan Gupta | d16f88c | 2017-07-11 17:47:57 +0530 | [diff] [blame] | 168 | // create the dhcp conf object. |
| 169 | objPath /= "dhcp"; |
| 170 | dhcpConf = std::make_unique<phosphor::network::dhcp::Configuration>( |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 171 | bus, objPath.string(), *this); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 172 | } |
| 173 | |
Patrick Williams | 8173e02 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 174 | ObjectPath Manager::vlan(IntfName interfaceName, uint32_t id) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 175 | { |
sureshvijayv1 | ee2cba8 | 2021-11-18 15:28:50 +0530 | [diff] [blame] | 176 | if (!hasInterface(interfaceName)) |
| 177 | { |
Patrick Williams | 9739984 | 2022-03-16 14:14:02 -0500 | [diff] [blame] | 178 | using ResourceErr = |
| 179 | phosphor::logging::xyz::openbmc_project::Common::ResourceNotFound; |
| 180 | elog<ResourceNotFound>(ResourceErr::RESOURCE(interfaceName.c_str())); |
sureshvijayv1 | ee2cba8 | 2021-11-18 15:28:50 +0530 | [diff] [blame] | 181 | } |
| 182 | |
Jiaqing Zhao | b685cb6 | 2022-04-12 22:57:34 +0800 | [diff] [blame] | 183 | if (id == 0 || id >= 4095) |
| 184 | { |
| 185 | log<level::ERR>("VLAN ID is not valid", entry("VLANID=%u", id)); |
| 186 | elog<InvalidArgument>( |
| 187 | Argument::ARGUMENT_NAME("VLANId"), |
| 188 | Argument::ARGUMENT_VALUE(std::to_string(id).c_str())); |
| 189 | } |
| 190 | |
William A. Kennington III | f4b4ff8 | 2019-04-09 19:06:52 -0700 | [diff] [blame] | 191 | return interfaces[interfaceName]->createVLAN(id); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 192 | } |
| 193 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 194 | void Manager::reset() |
| 195 | { |
William A. Kennington III | 9a1d9af | 2021-11-09 17:51:05 -0800 | [diff] [blame^] | 196 | if (fs::is_directory(confDir)) |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 197 | { |
William A. Kennington III | 9a1d9af | 2021-11-09 17:51:05 -0800 | [diff] [blame^] | 198 | for (const auto& file : fs::directory_iterator(confDir)) |
| 199 | { |
| 200 | fs::remove(file.path()); |
| 201 | } |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 202 | } |
William A. Kennington III | 9a1d9af | 2021-11-09 17:51:05 -0800 | [diff] [blame^] | 203 | createDefaultNetworkFiles(); |
| 204 | log<level::INFO>("Network Factory Reset queued."); |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 205 | } |
| 206 | |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 207 | // Need to merge the below function with the code which writes the |
| 208 | // config file during factory reset. |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 209 | // TODO openbmc/openbmc#1751 |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 210 | void Manager::writeToConfigurationFile() |
| 211 | { |
| 212 | // write all the static ip address in the systemd-network conf file |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 213 | for (const auto& intf : interfaces) |
| 214 | { |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 215 | intf.second->writeConfigurationFile(); |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 216 | } |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 217 | } |
| 218 | |
William A. Kennington III | 6f39c5e | 2021-05-13 18:39:23 -0700 | [diff] [blame] | 219 | #ifdef SYNC_MAC_FROM_INVENTORY |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 220 | void Manager::setFistBootMACOnInterface( |
| 221 | const std::pair<std::string, std::string>& inventoryEthPair) |
| 222 | { |
| 223 | for (const auto& interface : interfaces) |
| 224 | { |
| 225 | if (interface.first == inventoryEthPair.first) |
| 226 | { |
| 227 | auto returnMAC = |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 228 | interface.second->macAddress(inventoryEthPair.second); |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 229 | if (returnMAC == inventoryEthPair.second) |
| 230 | { |
| 231 | log<level::INFO>("Set the MAC on "), |
| 232 | entry("interface : ", interface.first.c_str()), |
| 233 | entry("MAC : ", inventoryEthPair.second.c_str()); |
| 234 | std::error_code ec; |
| 235 | if (std::filesystem::is_directory("/var/lib/network", ec)) |
| 236 | { |
| 237 | std::ofstream persistentFile(FirstBootFile + |
| 238 | interface.first); |
| 239 | } |
| 240 | break; |
| 241 | } |
| 242 | else |
| 243 | { |
| 244 | log<level::INFO>("MAC is Not Set on ethernet Interface"); |
| 245 | } |
| 246 | } |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | #endif |
| 251 | |
William A. Kennington III | 56ecc78 | 2021-10-07 18:44:50 -0700 | [diff] [blame] | 252 | void Manager::reloadConfigs() |
| 253 | { |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 254 | reloadTimer->restartOnce(reloadTimeout); |
William A. Kennington III | d41db38 | 2021-11-09 20:42:29 -0800 | [diff] [blame] | 255 | // Ensure that the next refresh happens after reconfiguration |
| 256 | refreshObjectTimer->setRemaining(reloadTimeout + refreshTimeout); |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | void Manager::doReloadConfigs() |
| 260 | { |
William A. Kennington III | 6ff633a | 2021-11-09 17:09:12 -0800 | [diff] [blame] | 261 | for (auto& hook : reloadPreHooks) |
| 262 | { |
| 263 | try |
| 264 | { |
| 265 | hook(); |
| 266 | } |
| 267 | catch (const std::exception& ex) |
| 268 | { |
| 269 | log<level::ERR>("Failed executing reload hook, ignoring", |
| 270 | entry("ERR=%s", ex.what())); |
| 271 | } |
| 272 | } |
| 273 | reloadPreHooks.clear(); |
William A. Kennington III | 56ecc78 | 2021-10-07 18:44:50 -0700 | [diff] [blame] | 274 | try |
| 275 | { |
| 276 | auto method = bus.new_method_call(NETWORKD_BUSNAME, NETWORKD_PATH, |
| 277 | NETWORKD_INTERFACE, "Reload"); |
| 278 | bus.call_noreply(method); |
| 279 | } |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 280 | catch (const sdbusplus::exception_t& ex) |
William A. Kennington III | 56ecc78 | 2021-10-07 18:44:50 -0700 | [diff] [blame] | 281 | { |
| 282 | log<level::ERR>("Failed to reload configuration", |
| 283 | entry("ERR=%s", ex.what())); |
| 284 | elog<InternalFailure>(); |
| 285 | } |
William A. Kennington III | d41db38 | 2021-11-09 20:42:29 -0800 | [diff] [blame] | 286 | // Ensure reconfiguration has enough time |
| 287 | refreshObjectTimer->setRemaining(refreshTimeout); |
William A. Kennington III | 56ecc78 | 2021-10-07 18:44:50 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 290 | } // namespace network |
| 291 | } // namespace phosphor |