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

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

Diff for /src/sys/netinet6/ip6_input.c between version 1.169 and 1.170

version 1.169, 2016/10/18 07:30:31 version 1.170, 2016/11/01 10:32:57
Line 701  ip6_input(struct mbuf *m, struct ifnet *
Line 701  ip6_input(struct mbuf *m, struct ifnet *
   
                         if (error != 0) {                          if (error != 0) {
                                 IP6_STATINC(IP6_STAT_CANTFORWARD);                                  IP6_STATINC(IP6_STAT_CANTFORWARD);
                                 m_freem(m);                                  goto bad;
                                 return;  
                         }                          }
                 }                  }
                 if (!ours) {                  if (!ours)
                         m_freem(m);                          goto bad;
                         return;  
                 }  
         } else if (!ours) {          } else if (!ours) {
                 ip6_forward(m, srcrt);                  ip6_forward(m, srcrt);
                 return;                  return;

Legend:
Removed from v.1.169  
changed lines
  Added in v.1.170

CVSweb <webmaster@jp.NetBSD.org>