IPTTLDEC
if (m->m_pkthdr.len > rt->rt_ifp->if_mtu || ip->ip_ttl <= IPTTLDEC)
ip->ip_ttl -= IPTTLDEC;
if (ip->ip_sum >= (u_int16_t) ~htons(IPTTLDEC << 8))
ip->ip_sum -= ~htons(IPTTLDEC << 8);
ip->ip_sum += htons(IPTTLDEC << 8);
if (ip->ip_ttl <= IPTTLDEC) {
ip->ip_ttl -= IPTTLDEC;