[BACK]Return to ip6_output.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_output.c between version 1.218 and 1.219

version 1.218, 2019/04/03 19:23:38 version 1.219, 2019/05/13 07:47:59
Line 756  ip6_output(
Line 756  ip6_output(
         /*          /*
          * Run through list of hooks for output packets.           * Run through list of hooks for output packets.
          */           */
         if ((error = pfil_run_hooks(inet6_pfil_hook, &m, ifp, PFIL_OUT)) != 0)          error = pfil_run_hooks(inet6_pfil_hook, &m, ifp, PFIL_OUT);
                 goto done;          if (error != 0 || m == NULL) {
         if (m == NULL)                  IP6_STATINC(IP6_STAT_PFILDROP_OUT);
                 goto done;                  goto done;
           }
         ip6 = mtod(m, struct ip6_hdr *);          ip6 = mtod(m, struct ip6_hdr *);
   
         /*          /*

Legend:
Removed from v.1.218  
changed lines
  Added in v.1.219

CVSweb <webmaster@jp.NetBSD.org>