Lines Matching refs:mhip
973 struct ip *mhip; /* ip header on the fragment */ in ip_fragment() local
1002 mhip = mtod(m, struct ip *); in ip_fragment()
1003 *mhip = *ip; in ip_fragment()
1005 mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip); in ip_fragment()
1006 mhip->ip_v = IPVERSION; in ip_fragment()
1007 mhip->ip_hl = mhlen >> 2; in ip_fragment()
1011 mhip->ip_off = ((off - hlen) >> 3) + ip_off; in ip_fragment()
1015 mhip->ip_off |= IP_MF; in ip_fragment()
1016 mhip->ip_len = htons((u_short)(len + mhlen)); in ip_fragment()
1028 mhip->ip_off = htons(mhip->ip_off); in ip_fragment()
1029 mhip->ip_sum = 0; in ip_fragment()
1031 mhip->ip_sum = in_cksum(m, mhlen); in ip_fragment()