[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.37.2.4 and 1.41.2.1

version 1.37.2.4, 2001/06/21 20:08:57 version 1.41.2.1, 2001/08/25 06:17:05
Line 81 
Line 81 
 #include <sys/time.h>  #include <sys/time.h>
 #include <sys/kernel.h>  #include <sys/kernel.h>
 #include <sys/syslog.h>  #include <sys/syslog.h>
 #include <sys/lwp.h>  
 #include <sys/proc.h>  #include <sys/proc.h>
   
 #include <net/if.h>  #include <net/if.h>
Line 311  ip6_input(m)
Line 310  ip6_input(m)
          * not the decapsulated packet.           * not the decapsulated packet.
          */           */
 #ifdef IPSEC  #ifdef IPSEC
         if (!ipsec_gethist(m, NULL))          if (!ipsec_getnhist(m))
 #else  #else
         if (1)          if (1)
 #endif  #endif
Line 1009  ip6_savecontrol(in6p, mp, ip6, m)
Line 1008  ip6_savecontrol(in6p, mp, ip6, m)
         struct ip6_hdr *ip6;          struct ip6_hdr *ip6;
         struct mbuf *m;          struct mbuf *m;
 {  {
         struct proc *p = (curproc ? curproc->l_proc : 0);       /* XXX */          struct proc *p = curproc;       /* XXX */
         int privileged;          int privileged;
   
         privileged = 0;          privileged = 0;

Legend:
Removed from v.1.37.2.4  
changed lines
  Added in v.1.41.2.1

CVSweb <webmaster@jp.NetBSD.org>