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