Home
last modified time | relevance | path

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

/external/qemu/slirp2/
Dip_output.c154 mhip->ip_off = ((off - hlen) >> 3) + (ip->ip_off & ~IP_MF);
155 if (ip->ip_off & IP_MF)
156 mhip->ip_off |= IP_MF;
160 mhip->ip_off |= IP_MF;
182 ip->ip_off = htons((u_int16_t)(ip->ip_off | IP_MF));
Dip.h94 #define IP_MF 0x2000 /* more fragments flag */ macro
Dip_input.c185 if (ip->ip_off & IP_MF)
/external/tcpdump/
Dprint-ip.c360 { IP_MF, "+" },
429 ipds->off & (IP_MF|IP_OFFMASK)); in ip_print_demux()
435 ipds->off & (IP_MF|IP_OFFMASK)); in ip_print_demux()
441 ipds->off & (IP_MF|IP_OFFMASK)); in ip_print_demux()
Dip.h59 #define IP_MF 0x2000 /* more fragments flag */ macro
Dprint-esp.c432 if (EXTRACT_16BITS(&ip->ip_off) & IP_MF) in esp_print()