#pragma once #include "types.hpp" #include #include #include namespace phosphor::network::netlink { InterfaceInfo intfFromRtm(std::string_view msg); std::optional> gatewayFromRtm(std::string_view msg); AddressInfo addrFromRtm(std::string_view msg); NeighborInfo neighFromRtm(std::string_view msg); } // namespace phosphor::network::netlink