1 #pragma once 2 #include "types.hpp" 3 4 #include <optional> 5 #include <string_view> 6 #include <tuple> 7 8 namespace phosphor::network::netlink 9 { 10 std::optional<std::tuple<unsigned, InAddrAny>> 11 gatewayFromRtm(std::string_view msg); 12 } 13