Home
last modified time | relevance | path

Searched refs:IP_MF (Results 1 – 16 of 16) sorted by relevance

/xnu-12377.61.12/bsd/netinet/
H A Dip.h109 #define IP_MF 0x2000 /* more fragments flag */ macro
H A Dip_compat.h427 #ifndef IP_MF
428 # define IP_MF ((u_short)0x2000)
H A Dip_var.h294 #define IP_OFF_IS_ATOMIC(_ip_off) ((_ip_off & (IP_DF | IP_MF | IP_OFFMASK)) == IP_DF)
H A Dip_output.c1951 mhip->ip_off = (u_short)(((off - hlen) >> 3) + (ip->ip_off & ~IP_MF)); in ip_fragment()
1952 if (ip->ip_off & IP_MF) { in ip_fragment()
1953 mhip->ip_off |= IP_MF; in ip_fragment()
1958 mhip->ip_off |= IP_MF; in ip_fragment()
2004 ip->ip_off |= IP_MF; in ip_fragment()
H A Dip_icmp.c245 if (oip->ip_off & ~(IP_MF | IP_DF)) { in icmp_error()
H A Dip_input.c922 if ((ip->ip_off & (IP_MF | IP_OFFMASK)) == 0 && in ip_input_adjust()
1944 if (ip->ip_off & IP_MF) { in ip_reass()
/xnu-12377.61.12/bsd/net/
H A Ddlil_subr.c740 if (ntohs(iph->ip_off) & IP_MF) { in dlil_clat46()
H A Dnat464_utils.c700 ip_frag_off |= IP_MF; in nat464_translate_64()
H A Dpf_norm.c1916 int mff = (ntohs(h->ip_off) & IP_MF); in pf_normalize_ip()
H A Dif_bridge.c4734 #define FRAG_BITS (IP_OFFMASK | IP_MF)
H A Dpf.c9834 if (h->ip_off & htons(IP_MF | IP_OFFMASK)) { in pf_test()
/xnu-12377.61.12/bsd/skywalk/nexus/flowswitch/
H A Dfsw_ip_frag.c298 fragflag = offflag & IP_MF; in fsw_ip_frag_reass_v4()
/xnu-12377.61.12/bsd/netinet6/
H A Dipsec.c1226 if (ip.ip_off & (IP_MF | IP_OFFMASK)) { in ipsec4_get_ulp()
2341 ip->ip_off &= htons(~IP_MF); in ipsec4_encapsulate()
5463 ip->ip_off &= htons(~IP_MF); in ipsec_fill_offload_frame()
/xnu-12377.61.12/osfmk/kdp/
H A Dkdp_udp.c163 #define IP_MF 0x2000 /* more fragments flag */ macro
/xnu-12377.61.12/tests/skywalk/
H A Dskt_xfer.c683 ip_udp->ip.ip_off = htons(IP_MF); in udp_frame_populate()
743 ip->ip_off = htons(last_fragment ? 0 : IP_MF) | htons(fragment_offset / 8); in ip_frame_populate()
H A Dskywalk_test_utils.c2357 ip->ip_off |= IP_MF; in sktu_create_ip_frames()