Home
last modified time | relevance | path

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

/xnu-8019.80.24/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.h248 #define IP_OFF_IS_ATOMIC(_ip_off) ((_ip_off & (IP_DF | IP_MF | IP_OFFMASK)) == IP_DF)
H A Dip_output.c1860 mhip->ip_off = (u_short)(((off - hlen) >> 3) + (ip->ip_off & ~IP_MF)); in ip_fragment()
1861 if (ip->ip_off & IP_MF) { in ip_fragment()
1862 mhip->ip_off |= IP_MF; in ip_fragment()
1867 mhip->ip_off |= IP_MF; in ip_fragment()
1913 ip->ip_off |= IP_MF; in ip_fragment()
H A Dip_icmp.c250 if (oip->ip_off & ~(IP_MF | IP_DF)) { in icmp_error()
H A Dip_input.c899 if ((ip->ip_off & (IP_MF | IP_OFFMASK)) == 0 && in ip_input_adjust()
2307 if (ip->ip_off & IP_MF) { in ip_reass()
/xnu-8019.80.24/bsd/skywalk/nexus/flowswitch/
H A Dfsw_ip_frag.c297 fragflag = offflag & IP_MF; in fsw_ip_frag_reass_v4()
/xnu-8019.80.24/bsd/net/
H A Dnat464_utils.c688 ip_frag_off |= IP_MF; in nat464_translate_64()
H A Dpf_norm.c1914 int mff = (ntohs(h->ip_off) & IP_MF); in pf_normalize_ip()
H A Dif_bridge.c4311 #define FRAG_BITS (IP_OFFMASK | IP_MF)
H A Ddlil.c6951 if (ntohs(iph->ip_off) & IP_MF) { in dlil_clat46()
H A Dpf.c9649 if (h->ip_off & htons(IP_MF | IP_OFFMASK)) { in pf_test()
/xnu-8019.80.24/bsd/netinet6/
H A Dipsec.c1231 if (ip.ip_off & (IP_MF | IP_OFFMASK)) { in ipsec4_get_ulp()
2366 ip->ip_off &= htons(~IP_MF); in ipsec4_encapsulate()
5082 ip->ip_off &= htons(~IP_MF); in ipsec_fill_offload_frame()
/xnu-8019.80.24/osfmk/kdp/
H A Dkdp_udp.c161 #define IP_MF 0x2000 /* more fragments flag */ macro