xref: /openbmc/phosphor-networkd/src/rtnetlink.hpp (revision 85dc57a57c5e8c9394bad5c787d6f837eae76178)
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