IPTTLDEC
if (m->m_pkthdr.len > ifp->if_mtu || ip->ip_ttl <= IPTTLDEC)
ip->ip_ttl -= IPTTLDEC;
if (ip->ip_sum >= (uint16_t)~htons(IPTTLDEC << 8))
ip->ip_sum -= ~htons(IPTTLDEC << 8);
ip->ip_sum += htons(IPTTLDEC << 8);
if (!ipstealth && ip->ip_ttl <= IPTTLDEC) {
ip->ip_ttl -= IPTTLDEC;