[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.174 and 1.175

version 1.174, 2017/02/21 03:59:31 version 1.175, 2017/02/22 07:46:00
Line 465  ip6_input(struct mbuf *m, struct ifnet *
Line 465  ip6_input(struct mbuf *m, struct ifnet *
                  * See if we belong to the destination multicast group on the                   * See if we belong to the destination multicast group on the
                  * arrival interface.                   * arrival interface.
                  */                   */
                 IN6_LOOKUP_MULTI(ip6->ip6_dst, rcvif, in6m);                  in6m = in6_lookup_multi(&ip6->ip6_dst, rcvif);
                 if (in6m)                  if (in6m)
                         ours = 1;                          ours = 1;
                 else if (!ip6_mrouter) {                  else if (!ip6_mrouter) {

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.175

CVSweb <webmaster@jp.NetBSD.org>