Home
last modified time | relevance | path

Searched refs:NeighborInfo (Results 1 – 8 of 8) sorted by relevance

/openbmc/phosphor-networkd/src/
H A Dtypes.hpp68 struct NeighborInfo struct
75 constexpr bool operator==(const NeighborInfo& rhs) const noexcept in operator ==() argument
104 std::unordered_map<stdplus::InAnyAddr, NeighborInfo> staticNeighs = {};
H A Dnetwork_manager.hpp67 void addNeighbor(const NeighborInfo& info);
68 void removeNeighbor(const NeighborInfo& info);
H A Drtnetlink.hpp18 NeighborInfo neighFromRtm(std::string_view msg);
H A Drtnetlink.cpp162 NeighborInfo neighFromRtm(std::string_view msg) in neighFromRtm()
166 NeighborInfo ret; in neighFromRtm()
H A Dnetwork_manager.cpp321 void Manager::addNeighbor(const NeighborInfo& info) in addNeighbor()
343 void Manager::removeNeighbor(const NeighborInfo& info) in removeNeighbor()
H A Dethernet_interface.hpp108 void addStaticNeigh(const NeighborInfo& info);
H A Dethernet_interface.cpp211 void EthernetInterface::addStaticNeigh(const NeighborInfo& info) in addStaticNeigh()
/openbmc/phosphor-networkd/test/
H A Dtest_rtnetlink.cpp128 EXPECT_EQ((NeighborInfo{}), neighFromRtm(stdplus::raw::asView<char>(msg))); in TEST()