/* Send packet to input processing via netisr */
switch (ip->ip_v) {
case IPVERSION:
/*
* Set M_BCAST flag when destination address is
* broadcast. It is expected by ip_tryforward().
*/
if (in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
m->m_flags |= M_BCAST;
netisr_queue_src(NETISR_IP, (uintptr_t)so, m);
break;
#ifdef INET6