Home
last modified time | relevance | path

Searched refs:ip6f_offlg (Results 1 – 13 of 13) sorted by relevance

/xnu-12377.81.4/tests/
H A DIP6_EXTHDR_CHECK_61873584.c57 packet1.frag.ip6f_offlg = htons(0) | IP6F_MORE_FRAG;
73 packet2.frag.ip6f_offlg = htons(8);
/xnu-12377.81.4/tests/skywalk/
H A Dskt_reass.c264 ip6f->ip6f_offlg = 0; in bad_fraglen_build()
265 ip6f->ip6f_offlg |= IP6F_MORE_FRAG; in bad_fraglen_build()
338 ip6f->ip6f_offlg = 0; in timeout_build()
339 ip6f->ip6f_offlg |= IP6F_MORE_FRAG; in timeout_build()
422 ip6f->ip6f_offlg = 0; in atomic_build()
515 ip6f->ip6f_offlg = htons((u_short)((2048) & ~7)); in queue_limit_build()
H A Dskywalk_test_utils.c2436 ip6f->ip6f_offlg = htons(off); in sktu_create_ip6_frames()
2438 ip6f->ip6f_offlg |= IP6F_MORE_FRAG; in sktu_create_ip6_frames()
/xnu-12377.81.4/bsd/netinet6/
H A Dfrag6.c345 if ((ip6f->ip6f_offlg & IP6F_MORE_FRAG) && in frag6_input()
372 if ((ip6f->ip6f_offlg & ~IP6F_RESERVED_MASK) == 0) { in frag6_input()
532 fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK); in frag6_input()
553 offsetof(struct ip6_frag, ip6f_offlg)); in frag6_input()
562 offsetof(struct ip6_frag, ip6f_offlg)); in frag6_input()
613 offsetof(struct ip6_frag, ip6f_offlg)); in frag6_input()
626 ip6af->ip6af_mff = ip6f->ip6f_offlg & IP6F_MORE_FRAG; in frag6_input()
H A Dip6_output.c1949 ip6f->ip6f_offlg = htons((u_short)((off - hlen) & ~7)); in ip6_do_fragmentation()
1953 ip6f->ip6f_offlg |= IP6F_MORE_FRAG; in ip6_do_fragmentation()
H A Dip6_input.c2280 if (fh.ip6f_offlg & IP6F_OFF_MASK) { in ip6_nexthdr()
H A Dicmp6.c1113 if (fh->ip6f_offlg & IP6F_OFF_MASK) { in icmp6_notify_error()
/xnu-12377.81.4/bsd/net/
H A Dnat464_utils.c619 p_ip6_frag->ip6f_offlg = (uint16_t)(frag_offset << 3); in nat464_insert_frag46()
621 p_ip6_frag->ip6f_offlg |= 0x1; in nat464_insert_frag46()
623 p_ip6_frag->ip6f_offlg = htons(p_ip6_frag->ip6f_offlg); in nat464_insert_frag46()
670 ip_frag_off = (ntohs(frag6.ip6f_offlg & IP6F_OFF_MASK)) >> 3; in nat464_translate_64()
699 if (frag6.ip6f_offlg & IP6F_MORE_FRAG) { in nat464_translate_64()
H A Dpf_norm.c1116 (ntohs((fr)->fr_ip6f_opt.ip6f_offlg & IP6F_OFF_MASK))
1287 frent->fr_ip6f_opt.ip6f_offlg = in pf_reassemble6()
1288 htons(ntohs(frent->fr_ip6f_opt.ip6f_offlg) + in pf_reassemble6()
1303 frea->fr_ip6f_opt.ip6f_offlg = in pf_reassemble6()
1304 htons(ntohs(frea->fr_ip6f_opt.ip6f_offlg) + in pf_reassemble6()
1493 off = ntohs(fh->ip6f_offlg & IP6F_OFF_MASK); in pf_frag6cache()
1638 fh->ip6f_offlg &= ~IP6F_OFF_MASK; in pf_frag6cache()
1639 fh->ip6f_offlg |= in pf_frag6cache()
1640 htons(ntohs(fh->ip6f_offlg & IP6F_OFF_MASK) in pf_frag6cache()
2444 fragoff = ntohs(frag.ip6f_offlg & IP6F_OFF_MASK); in pf_normalize_ip6()
[all …]
H A Dif_ports_used.c2026 if ((ip6_frag.ip6f_offlg & IP6F_OFF_MASK) != 0) { in if_ports_used_match_mbuf()
/xnu-12377.81.4/bsd/skywalk/nexus/flowswitch/
H A Dfsw_ip_frag.c361 fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK); in fsw_ip_frag_reass_v6()
365 fragflag = ip6f->ip6f_offlg & IP6F_MORE_FRAG; in fsw_ip_frag_reass_v6()
374 ASSERT((ip6f->ip6f_offlg & ~IP6F_RESERVED_MASK) != 0); in fsw_ip_frag_reass_v6()
637 offsetof(struct ip6_frag, ip6f_offlg)); in ipf_process()
/xnu-12377.81.4/bsd/skywalk/nexus/flowswitch/flow/
H A Dflow_classifier.c308 if ((ip6f->ip6f_offlg & IP6F_OFF_MASK) != 0) { in flow_pkt_classify()
315 if ((ip6f->ip6f_offlg & ~IP6F_RESERVED_MASK) == 0) { in flow_pkt_classify()
/xnu-12377.81.4/bsd/netinet/
H A Dip6.h282 u_int16_t ip6f_offlg; /* offset, reserved, and flag */ member