[BACK]Return to in6_gif.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/in6_gif.c between version 1.47 and 1.48

version 1.47, 2006/12/15 21:18:54 version 1.48, 2007/02/17 06:11:25
Line 460  in6_gif_ctlinput(cmd, sa, d)
Line 460  in6_gif_ctlinput(cmd, sa, d)
          * XXX slow.  sc (or sc->encap_cookie6) should be passed from           * XXX slow.  sc (or sc->encap_cookie6) should be passed from
          * ip_encap.c.           * ip_encap.c.
          */           */
         for (sc = LIST_FIRST(&gif_softc_list); sc;          LIST_FOREACH(sc, &gif_softc_list, gif_list) {
              sc = LIST_NEXT(sc, gif_list)) {  
                 if ((sc->gif_if.if_flags & IFF_RUNNING) == 0)                  if ((sc->gif_if.if_flags & IFF_RUNNING) == 0)
                         continue;                          continue;
                 if (sc->gif_psrc->sa_family != AF_INET6)                  if (sc->gif_psrc->sa_family != AF_INET6)

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.48

CVSweb <webmaster@jp.NetBSD.org>