[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.50 and 1.50.4.1

version 1.50, 1997/06/24 02:26:04 version 1.50.4.1, 1997/09/01 21:00:39
Line 293  next:
Line 293  next:
                             ip->ip_dst.s_addr == ia->ia_net)                              ip->ip_dst.s_addr == ia->ia_net)
                                 goto ours;                                  goto ours;
                 }                  }
                   /*
                    * An interface with IP address zero accepts
                    * all packets that arrive on that interface.
                    */
                   if ((ia->ia_ifp == m->m_pkthdr.rcvif) &&
                       in_nullhost(ia->ia_addr.sin_addr))
                           goto ours;
         }          }
         if (IN_MULTICAST(ip->ip_dst.s_addr)) {          if (IN_MULTICAST(ip->ip_dst.s_addr)) {
                 struct in_multi *inm;                  struct in_multi *inm;

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.50.4.1

CVSweb <webmaster@jp.NetBSD.org>