[BACK]Return to ip_input.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / netinet

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/netinet/ip_input.c between version 1.254 and 1.254.4.2

version 1.254, 2007/10/02 20:35:04 version 1.254.4.2, 2007/12/08 18:21:13
Line 469  ipintr(void)
Line 469  ipintr(void)
                 splx(s);                  splx(s);
                 if (m == 0)                  if (m == 0)
                         return;                          return;
                 MCLAIM(m, &ip_rx_mowner);  
                 ip_input(m);                  ip_input(m);
         }          }
 }  }
Line 1777  ip_srcroute(void)
Line 1776  ip_srcroute(void)
 }  }
   
 const int inetctlerrmap[PRC_NCMDS] = {  const int inetctlerrmap[PRC_NCMDS] = {
         0,              0,              0,              0,          [PRC_MSGSIZE] = EMSGSIZE,
         0,              EMSGSIZE,       EHOSTDOWN,      EHOSTUNREACH,          [PRC_HOSTDEAD] = EHOSTDOWN,
         EHOSTUNREACH,   EHOSTUNREACH,   ECONNREFUSED,   ECONNREFUSED,          [PRC_HOSTUNREACH] = EHOSTUNREACH,
         EMSGSIZE,       EHOSTUNREACH,   0,              0,          [PRC_UNREACH_NET] = EHOSTUNREACH,
         0,              0,              0,              0,          [PRC_UNREACH_HOST] = EHOSTUNREACH,
         ENOPROTOOPT          [PRC_UNREACH_PROTOCOL] = ECONNREFUSED,
           [PRC_UNREACH_PORT] = ECONNREFUSED,
           [PRC_UNREACH_SRCFAIL] = EHOSTUNREACH,
           [PRC_PARAMPROB] = ENOPROTOOPT,
 };  };
   
 /*  /*

Legend:
Removed from v.1.254  
changed lines
  Added in v.1.254.4.2

CVSweb <webmaster@jp.NetBSD.org>