Home
last modified time | relevance | path

Searched refs:RT_SCOPE_UNIVERSE (Results 1 – 5 of 5) sorted by relevance

/freebsd/tests/sys/netlink/
H A Dtest_rtnl_ifaddr.py66 …ret if r[0] == ifname and r[1] == socket.AF_INET and r[2] == RtScope.RT_SCOPE_UNIVERSE.value]) == 1
68 …et if r[0] == ifname and r[1] == socket.AF_INET6 and r[2] == RtScope.RT_SCOPE_UNIVERSE.value]) == 1
136 assert msg.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
149 if ret[0].base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value:
158 assert msg.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
261 assert rx_msg.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
296 assert rx_msg.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
317 assert rx_msg_gu.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
341 assert rx_msg.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
369 assert rx_msg_gu.base_hdr.ifa_scope == RtScope.RT_SCOPE_UNIVERSE.value
[all …]
/freebsd/sys/netlink/route/
H A Droute.h105 RT_SCOPE_UNIVERSE = 0, enumerator
H A Drt.c288 rtm->rtm_scope = RT_SCOPE_UNIVERSE; in dump_px()
H A Diface.c812 uint8_t addr_scope = RT_SCOPE_UNIVERSE; in ifa_get_scope()
/freebsd/tests/atf_python/sys/netlink/
H A Dnetlink_route.py149 RT_SCOPE_UNIVERSE = 0 variable in RtScope