Home
last modified time | relevance | path

Searched refs:rt_flags (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/sys/net/route/
H A Dnhop_ctl.c408 nhop_set_rtflags(nh, rt_flags); in alter_nhop_from_info()
715 nh_priv->rt_flags = nh_orig->nh_priv->rt_flags; in nhop_copy()
724 nh->nh_priv->rt_flags &= ~RTF_GATEWAY; in nhop_set_direct_gw()
774 nh->nh_priv->rt_flags |= RTF_GATEWAY; in nhop_set_gw()
823 nh->nh_priv->rt_flags |= RTF_REJECT; in nhop_set_blackhole()
871 nh->nh_priv->rt_flags |= RTF_PINNED; in nhop_set_pinned()
913 return (nh->nh_priv->rt_flags); in nhop_get_rtflags()
923 nh->nh_priv->rt_flags |= (rt_flags & RT_SET_RTFLAGS_MASK); in nhop_set_rtflags()
935 nh->nh_priv->rt_flags |= RTF_HOST; in nhop_set_pxtype_flag()
939 nh->nh_priv->rt_flags &= ~RTF_HOST; in nhop_set_pxtype_flag()
[all …]
H A Dnhop_var.h78 uint32_t rt_flags; /* routing flags for the control plane */ member
99 ((_nh)->nh_priv->rt_flags & RTF_PINNED))
H A Dnhop.h190 void nhop_set_rtflags(struct nhop_object *nh, int rt_flags);
/freebsd-14.2/sys/net80211/
H A Dieee80211_hwmp.c935 rttran->rt_flags = IEEE80211_MESHRT_FLAGS_VALID; in hwmp_update_transmitter()
1038 rtorig->rt_flags = IEEE80211_MESHRT_FLAGS_VALID; in hwmp_recv_preq()
1137 rtorig->rt_flags |= IEEE80211_MESHRT_FLAGS_GATE; in hwmp_recv_preq()
1345 rt->rt_flags & IEEE80211_MESHRT_FLAGS_VALID ? in hwmp_recv_prep()
1426 rtext->rt_flags = IEEE80211_MESHRT_FLAGS_PROXY | in hwmp_recv_prep()
1588 rt->rt_flags &= ~IEEE80211_MESHRT_FLAGS_VALID; in hwmp_recv_perr()
1594 rt->rt_flags &= ~IEEE80211_MESHRT_FLAGS_VALID; in hwmp_recv_perr()
1601 rt_ext->rt_flags &= in hwmp_recv_perr()
1790 rt->rt_flags |= IEEE80211_MESHRT_FLAGS_GATE; in hwmp_recv_rann()
1964 rt->rt_flags = IEEE80211_MESHRT_FLAGS_DISCOVER; in hwmp_discover()
[all …]
H A Dieee80211_mesh.c287 rt->rt_flags &= ~IEEE80211_MESHRT_FLAGS_VALID; in ieee80211_mesh_rt_update()
325 rt->rt_flags |= IEEE80211_MESHRT_FLAGS_VALID in ieee80211_mesh_proxy_check()
341 rt->rt_flags |= IEEE80211_MESHRT_FLAGS_VALID in ieee80211_mesh_proxy_check()
375 if (rt->rt_flags & IEEE80211_MESHRT_FLAGS_PROXY) { in ieee80211_mesh_rt_del()
434 if (rt->rt_flags & IEEE80211_MESHRT_FLAGS_DISCOVER) in mesh_rt_flush_invalid()
1022 if (rt->rt_flags & IEEE80211_MESHRT_FLAGS_PROXY) { in ieee80211_mesh_find_txnode()
1028 rt->rt_flags); in ieee80211_mesh_find_txnode()
1104 KASSERT((rt_gate->rt_flags & in ieee80211_mesh_forward_to_gates()
1112 rt_dest->rt_flags = IEEE80211_MESHRT_FLAGS_PROXY | in ieee80211_mesh_forward_to_gates()
1134 rt_dest->rt_flags = 0; /* Mark invalid */ in ieee80211_mesh_forward_to_gates()
[all …]
H A Dieee80211_mesh.h428 uint16_t rt_flags; member
H A Dieee80211_output.c1596 if (rt->rt_flags & IEEE80211_MESHRT_FLAGS_PROXY) { in ieee80211_encap()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_solaris.h33 uint_t rt_flags; member
/freebsd-14.2/tools/debugscripts/
H A Dnetstat-anr.gdb103 p_sockaddr $sa $sam $rte->rt_flags
107 p_flags $rte->rt_flags
/freebsd-14.2/sys/net/
H A Droute.c569 if (!(rt->rt_flags & RTF_HOST)) {
574 if (rt->rt_flags & RTF_GATEWAY) {
/freebsd-14.2/sys/netlink/route/
H A Drt.c83 int rt_flags = nhop_get_rtflags(nh); in nl_get_rtm_protocol() local
84 if (rt_flags & RTF_PROTO1) in nl_get_rtm_protocol()
86 if (rt_flags & RTF_STATIC) in nl_get_rtm_protocol()
/freebsd-14.2/sys/netinet6/
H A Dip6_forward.c296 if ((rt->rt_flags & (RTF_BLACKHOLE|RTF_REJECT)) == 0) in ip6_forward()
H A Dicmp6.c2340 int rt_flags; in icmp6_redirect_input() local
2349 rt_flags = 0; in icmp6_redirect_input()
2357 rt_flags |= RTF_GATEWAY; in icmp6_redirect_input()
2362 (struct sockaddr *)&ssrc, ifp, rt_flags, in icmp6_redirect_input()
/freebsd-14.2/contrib/wpa/src/wps/
H A Dwps_upnp_ssdp.c826 rt.rt_flags = RTF_UP; in add_ssdp_network()