[BACK]Return to udp_usrreq.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/udp_usrreq.c between version 1.167 and 1.187

version 1.167, 2008/04/15 03:57:04 version 1.187, 2012/06/22 14:54:35
Line 64 
Line 64 
 __KERNEL_RCSID(0, "$NetBSD$");  __KERNEL_RCSID(0, "$NetBSD$");
   
 #include "opt_inet.h"  #include "opt_inet.h"
   #include "opt_compat_netbsd.h"
 #include "opt_ipsec.h"  #include "opt_ipsec.h"
 #include "opt_inet_csum.h"  #include "opt_inet_csum.h"
 #include "opt_ipkdb.h"  #include "opt_ipkdb.h"
Line 103  __KERNEL_RCSID(0, "$NetBSD$");
Line 104  __KERNEL_RCSID(0, "$NetBSD$");
 #include <netinet6/ip6_private.h>  #include <netinet6/ip6_private.h>
 #include <netinet6/in6_pcb.h>  #include <netinet6/in6_pcb.h>
 #include <netinet6/udp6_var.h>  #include <netinet6/udp6_var.h>
   #include <netinet6/udp6_private.h>
 #include <netinet6/scope6_var.h>  #include <netinet6/scope6_var.h>
 #endif  #endif
   
Line 116  __KERNEL_RCSID(0, "$NetBSD$");
Line 118  __KERNEL_RCSID(0, "$NetBSD$");
 #include <net/if_faith.h>  #include <net/if_faith.h>
 #endif  #endif
   
 #include <machine/stdarg.h>  
   
 #ifdef FAST_IPSEC  #ifdef FAST_IPSEC
 #include <netipsec/ipsec.h>  #include <netipsec/ipsec.h>
 #include <netipsec/ipsec_var.h>                 /* XXX ipsecstat namespace */  #include <netipsec/ipsec_var.h>
   #include <netipsec/ipsec_private.h>
 #include <netipsec/esp.h>  #include <netipsec/esp.h>
 #ifdef INET6  #ifdef INET6
 #include <netipsec/ipsec6.h>  #include <netipsec/ipsec6.h>
 #endif  #endif
 #endif  /* FAST_IPSEC*/  #endif  /* FAST_IPSEC */
   
 #ifdef IPSEC  #ifdef COMPAT_50
 #include <netinet6/ipsec.h>  #include <compat/sys/socket.h>
 #include <netinet6/esp.h>  #endif
 #include <netkey/key.h>  
 #endif /*IPSEC*/  
   
 #ifdef IPKDB  #ifdef IPKDB
 #include <ipkdb/ipkdb.h>  #include <ipkdb/ipkdb.h>
Line 224  EVCNT_ATTACH_STATIC(udp6_swcsum);
Line 223  EVCNT_ATTACH_STATIC(udp6_swcsum);
   
 #endif /* UDP_CSUM_COUNTERS */  #endif /* UDP_CSUM_COUNTERS */
   
   static void sysctl_net_inet_udp_setup(struct sysctllog **);
   
 void  void
 udp_init(void)  udp_init(void)
 {  {
   
           sysctl_net_inet_udp_setup(NULL);
   
         in_pcbinit(&udbtable, udbhashsize, udbhashsize);          in_pcbinit(&udbtable, udbhashsize, udbhashsize);
   
         MOWNER_ATTACH(&udp_tx_mowner);          MOWNER_ATTACH(&udp_tx_mowner);
         MOWNER_ATTACH(&udp_rx_mowner);          MOWNER_ATTACH(&udp_rx_mowner);
         MOWNER_ATTACH(&udp_mowner);          MOWNER_ATTACH(&udp_mowner);
   
   #ifdef INET
         udpstat_percpu = percpu_alloc(sizeof(uint64_t) * UDP_NSTATS);          udpstat_percpu = percpu_alloc(sizeof(uint64_t) * UDP_NSTATS);
   #endif
   #ifdef INET6
           udp6stat_percpu = percpu_alloc(sizeof(uint64_t) * UDP6_NSTATS);
   #endif
 }  }
   
 /*  /*
Line 400  udp_input(struct mbuf *m, ...)
Line 408  udp_input(struct mbuf *m, ...)
         if (IN_MULTICAST(ip->ip_dst.s_addr) || n == 0) {          if (IN_MULTICAST(ip->ip_dst.s_addr) || n == 0) {
                 struct sockaddr_in6 src6, dst6;                  struct sockaddr_in6 src6, dst6;
   
                 bzero(&src6, sizeof(src6));                  memset(&src6, 0, sizeof(src6));
                 src6.sin6_family = AF_INET6;                  src6.sin6_family = AF_INET6;
                 src6.sin6_len = sizeof(struct sockaddr_in6);                  src6.sin6_len = sizeof(struct sockaddr_in6);
                 src6.sin6_addr.s6_addr[10] = src6.sin6_addr.s6_addr[11] = 0xff;                  src6.sin6_addr.s6_addr[10] = src6.sin6_addr.s6_addr[11] = 0xff;
                 bcopy(&ip->ip_src, &src6.sin6_addr.s6_addr[12],                  memcpy(&src6.sin6_addr.s6_addr[12], &ip->ip_src,
                         sizeof(ip->ip_src));                          sizeof(ip->ip_src));
                 src6.sin6_port = uh->uh_sport;                  src6.sin6_port = uh->uh_sport;
                 bzero(&dst6, sizeof(dst6));                  memset(&dst6, 0, sizeof(dst6));
                 dst6.sin6_family = AF_INET6;                  dst6.sin6_family = AF_INET6;
                 dst6.sin6_len = sizeof(struct sockaddr_in6);                  dst6.sin6_len = sizeof(struct sockaddr_in6);
                 dst6.sin6_addr.s6_addr[10] = dst6.sin6_addr.s6_addr[11] = 0xff;                  dst6.sin6_addr.s6_addr[10] = dst6.sin6_addr.s6_addr[11] = 0xff;
                 bcopy(&ip->ip_dst, &dst6.sin6_addr.s6_addr[12],                  memcpy(&dst6.sin6_addr.s6_addr[12], &ip->ip_dst,
                         sizeof(ip->ip_dst));                          sizeof(ip->ip_dst));
                 dst6.sin6_port = uh->uh_dport;                  dst6.sin6_port = uh->uh_dport;
   
Line 464  udp6_input_checksum(struct mbuf *m, cons
Line 472  udp6_input_checksum(struct mbuf *m, cons
                 goto good;                  goto good;
         }          }
         if (uh->uh_sum == 0) {          if (uh->uh_sum == 0) {
                 udp6stat.udp6s_nosum++;                  UDP6_STATINC(UDP6_STAT_NOSUM);
                 goto bad;                  goto bad;
         }          }
   
Line 473  udp6_input_checksum(struct mbuf *m, cons
Line 481  udp6_input_checksum(struct mbuf *m, cons
             M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {              M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {
         case M_CSUM_UDPv6|M_CSUM_TCP_UDP_BAD:          case M_CSUM_UDPv6|M_CSUM_TCP_UDP_BAD:
                 UDP_CSUM_COUNTER_INCR(&udp6_hwcsum_bad);                  UDP_CSUM_COUNTER_INCR(&udp6_hwcsum_bad);
                 udp6stat.udp6s_badsum++;                  UDP6_STATINC(UDP6_STAT_BADSUM);
                 goto bad;                  goto bad;
   
 #if 0 /* notyet */  #if 0 /* notyet */
Line 492  udp6_input_checksum(struct mbuf *m, cons
Line 500  udp6_input_checksum(struct mbuf *m, cons
                  */                   */
                 UDP_CSUM_COUNTER_INCR(&udp6_swcsum);                  UDP_CSUM_COUNTER_INCR(&udp6_swcsum);
                 if (in6_cksum(m, IPPROTO_UDP, off, len) != 0) {                  if (in6_cksum(m, IPPROTO_UDP, off, len) != 0) {
                         udp6stat.udp6s_badsum++;                          UDP6_STATINC(UDP6_STAT_BADSUM);
                         goto bad;                          goto bad;
                 }                  }
         }          }
Line 523  udp6_input(struct mbuf **mp, int *offp, 
Line 531  udp6_input(struct mbuf **mp, int *offp, 
         }          }
 #endif  #endif
   
         udp6stat.udp6s_ipackets++;          UDP6_STATINC(UDP6_STAT_IPACKETS);
   
         /* check for jumbogram is done in ip6_input.  we can trust pkthdr.len */          /* check for jumbogram is done in ip6_input.  we can trust pkthdr.len */
         plen = m->m_pkthdr.len - off;          plen = m->m_pkthdr.len - off;
Line 542  udp6_input(struct mbuf **mp, int *offp, 
Line 550  udp6_input(struct mbuf **mp, int *offp, 
                 ulen = plen;                  ulen = plen;
   
         if (plen != ulen) {          if (plen != ulen) {
                 udp6stat.udp6s_badlen++;                  UDP6_STATINC(UDP6_STAT_BADLEN);
                 goto bad;                  goto bad;
         }          }
   
Line 567  udp6_input(struct mbuf **mp, int *offp, 
Line 575  udp6_input(struct mbuf **mp, int *offp, 
         /*          /*
          * Construct source and dst sockaddrs.           * Construct source and dst sockaddrs.
          */           */
         bzero(&src, sizeof(src));          memset(&src, 0, sizeof(src));
         src.sin6_family = AF_INET6;          src.sin6_family = AF_INET6;
         src.sin6_len = sizeof(struct sockaddr_in6);          src.sin6_len = sizeof(struct sockaddr_in6);
         src.sin6_addr = ip6->ip6_src;          src.sin6_addr = ip6->ip6_src;
         src.sin6_port = uh->uh_sport;          src.sin6_port = uh->uh_sport;
         bzero(&dst, sizeof(dst));          memset(&dst, 0, sizeof(dst));
         dst.sin6_family = AF_INET6;          dst.sin6_family = AF_INET6;
         dst.sin6_len = sizeof(struct sockaddr_in6);          dst.sin6_len = sizeof(struct sockaddr_in6);
         dst.sin6_addr = ip6->ip6_dst;          dst.sin6_addr = ip6->ip6_dst;
Line 580  udp6_input(struct mbuf **mp, int *offp, 
Line 588  udp6_input(struct mbuf **mp, int *offp, 
   
         if (udp6_realinput(AF_INET6, &src, &dst, m, off) == 0) {          if (udp6_realinput(AF_INET6, &src, &dst, m, off) == 0) {
                 if (m->m_flags & M_MCAST) {                  if (m->m_flags & M_MCAST) {
                         udp6stat.udp6s_noportmcast++;                          UDP6_STATINC(UDP6_STAT_NOPORTMCAST);
                         goto bad;                          goto bad;
                 }                  }
                 udp6stat.udp6s_noport++;                  UDP6_STATINC(UDP6_STAT_NOPORT);
                 icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);                  icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);
                 m = NULL;                  m = NULL;
         }          }
Line 618  udp4_sendup(struct mbuf *m, int off /* o
Line 626  udp4_sendup(struct mbuf *m, int off /* o
                 return;                  return;
         }          }
   
 #if defined(IPSEC) || defined(FAST_IPSEC)  #if defined(FAST_IPSEC)
         /* check AH/ESP integrity. */          /* check AH/ESP integrity. */
         if (so != NULL && ipsec4_in_reject_so(m, so)) {          if (so != NULL && ipsec4_in_reject_so(m, so)) {
                 ipsecstat.in_polvio++;                  IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
                 if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)                  if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)
                         icmp_error(n, ICMP_UNREACH, ICMP_UNREACH_ADMIN_PROHIBIT,                          icmp_error(n, ICMP_UNREACH, ICMP_UNREACH_ADMIN_PROHIBIT,
                             0, 0);                              0, 0);
Line 631  udp4_sendup(struct mbuf *m, int off /* o
Line 639  udp4_sendup(struct mbuf *m, int off /* o
   
         if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {          if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {
                 if (inp && (inp->inp_flags & INP_CONTROLOPTS                  if (inp && (inp->inp_flags & INP_CONTROLOPTS
   #ifdef SO_OTIMESTAMP
                            || so->so_options & SO_OTIMESTAMP
   #endif
                          || so->so_options & SO_TIMESTAMP)) {                           || so->so_options & SO_TIMESTAMP)) {
                         struct ip *ip = mtod(n, struct ip *);                          struct ip *ip = mtod(n, struct ip *);
                         ip_savecontrol(inp, &opts, ip, n);                          ip_savecontrol(inp, &opts, ip, n);
Line 665  udp6_sendup(struct mbuf *m, int off /* o
Line 676  udp6_sendup(struct mbuf *m, int off /* o
                 return;                  return;
         in6p = sotoin6pcb(so);          in6p = sotoin6pcb(so);
   
 #if defined(IPSEC) || defined(FAST_IPSEC)  #if defined(FAST_IPSEC)
         /* check AH/ESP integrity. */          /* check AH/ESP integrity. */
         if (so != NULL && ipsec6_in_reject_so(m, so)) {          if (so != NULL && ipsec6_in_reject_so(m, so)) {
                 ipsec6stat.in_polvio++;                  IPSEC6_STATINC(IPSEC_STAT_IN_POLVIO);
                 if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)                  if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)
                         icmp6_error(n, ICMP6_DST_UNREACH,                          icmp6_error(n, ICMP6_DST_UNREACH,
                             ICMP6_DST_UNREACH_ADMIN, 0);                              ICMP6_DST_UNREACH_ADMIN, 0);
Line 678  udp6_sendup(struct mbuf *m, int off /* o
Line 689  udp6_sendup(struct mbuf *m, int off /* o
   
         if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {          if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {
                 if (in6p && (in6p->in6p_flags & IN6P_CONTROLOPTS                  if (in6p && (in6p->in6p_flags & IN6P_CONTROLOPTS
                           || in6p->in6p_socket->so_options & SO_TIMESTAMP)) {  #ifdef SO_OTIMESTAMP
                       || in6p->in6p_socket->so_options & SO_OTIMESTAMP
   #endif
                       || in6p->in6p_socket->so_options & SO_TIMESTAMP)) {
                         struct ip6_hdr *ip6 = mtod(n, struct ip6_hdr *);                          struct ip6_hdr *ip6 = mtod(n, struct ip6_hdr *);
                         ip6_savecontrol(in6p, &opts, ip6, n);                          ip6_savecontrol(in6p, &opts, ip6, n);
                 }                  }
Line 689  udp6_sendup(struct mbuf *m, int off /* o
Line 703  udp6_sendup(struct mbuf *m, int off /* o
                         if (opts)                          if (opts)
                                 m_freem(opts);                                  m_freem(opts);
                         so->so_rcv.sb_overflowed++;                          so->so_rcv.sb_overflowed++;
                         udp6stat.udp6s_fullsock++;                          UDP6_STATINC(UDP6_STAT_FULLSOCK);
                 } else                  } else
                         sorwakeup(so);                          sorwakeup(so);
         }          }
Line 781  udp4_realinput(struct sockaddr_in *src, 
Line 795  udp4_realinput(struct sockaddr_in *src, 
                 /*                  /*
                  * Locate pcb for datagram.                   * Locate pcb for datagram.
                  */                   */
                 inp = in_pcblookup_connect(&udbtable, *src4, *sport, *dst4, *dport);                  inp = in_pcblookup_connect(&udbtable, *src4, *sport, *dst4,
                       *dport, 0);
                 if (inp == 0) {                  if (inp == 0) {
                         UDP_STATINC(UDP_STAT_PCBHASHMISS);                          UDP_STATINC(UDP_STAT_PCBHASHMISS);
                         inp = in_pcblookup_bind(&udbtable, *dst4, *dport);                          inp = in_pcblookup_bind(&udbtable, *dst4, *dport);
Line 817  udp4_realinput(struct sockaddr_in *src, 
Line 832  udp4_realinput(struct sockaddr_in *src, 
                 }                  }
 #endif  #endif
   
                   /*
                    * Check the minimum TTL for socket.
                    */
                   if (mtod(m, struct ip *)->ip_ttl < inp->inp_ip_minttl)
                           goto bad;
   
                 udp4_sendup(m, off, (struct sockaddr *)src, inp->inp_socket);                  udp4_sendup(m, off, (struct sockaddr *)src, inp->inp_socket);
                 rcvcnt++;                  rcvcnt++;
         }          }
Line 929  udp6_realinput(int af, struct sockaddr_i
Line 950  udp6_realinput(int af, struct sockaddr_i
                  * Locate pcb for datagram.                   * Locate pcb for datagram.
                  */                   */
                 in6p = in6_pcblookup_connect(&udbtable, &src6, sport, dst6,                  in6p = in6_pcblookup_connect(&udbtable, &src6, sport, dst6,
                     dport, 0);                                               dport, 0, 0);
                 if (in6p == 0) {                  if (in6p == 0) {
                         UDP_STATINC(UDP_STAT_PCBHASHMISS);                          UDP_STATINC(UDP_STAT_PCBHASHMISS);
                         in6p = in6_pcblookup_bind(&udbtable, dst6, dport, 0);                          in6p = in6_pcblookup_bind(&udbtable, dst6, dport, 0);
Line 992  udp_ctlinput(int cmd, const struct socka
Line 1013  udp_ctlinput(int cmd, const struct socka
 }  }
   
 int  int
 udp_ctloutput(int op, struct socket *so, int level, int optname,  udp_ctloutput(int op, struct socket *so, struct sockopt *sopt)
     struct mbuf **mp)  
 {  {
         int s;          int s;
         int error = 0;          int error = 0;
         struct mbuf *m;  
         struct inpcb *inp;          struct inpcb *inp;
         int family;          int family;
           int optval;
   
         family = so->so_proto->pr_domain->dom_family;          family = so->so_proto->pr_domain->dom_family;
   
Line 1007  udp_ctloutput(int op, struct socket *so,
Line 1027  udp_ctloutput(int op, struct socket *so,
         switch (family) {          switch (family) {
 #ifdef INET  #ifdef INET
         case PF_INET:          case PF_INET:
                 if (level != IPPROTO_UDP) {                  if (sopt->sopt_level != IPPROTO_UDP) {
                         error = ip_ctloutput(op, so, level, optname, mp);                          error = ip_ctloutput(op, so, sopt);
                         goto end;                          goto end;
                 }                  }
                 break;                  break;
 #endif  #endif
 #ifdef INET6  #ifdef INET6
         case PF_INET6:          case PF_INET6:
                 if (level != IPPROTO_UDP) {                  if (sopt->sopt_level != IPPROTO_UDP) {
                         error = ip6_ctloutput(op, so, level, optname, mp);                          error = ip6_ctloutput(op, so, sopt);
                         goto end;                          goto end;
                 }                  }
                 break;                  break;
Line 1029  udp_ctloutput(int op, struct socket *so,
Line 1049  udp_ctloutput(int op, struct socket *so,
   
         switch (op) {          switch (op) {
         case PRCO_SETOPT:          case PRCO_SETOPT:
                 m = *mp;  
                 inp = sotoinpcb(so);                  inp = sotoinpcb(so);
   
                 switch (optname) {                  switch (sopt->sopt_name) {
                 case UDP_ENCAP:                  case UDP_ENCAP:
                         if (m == NULL || m->m_len != sizeof(int)) {                          error = sockopt_getint(sopt, &optval);
                                 error = EINVAL;                          if (error)
                                 break;                                  break;
                         }  
   
                         switch(*mtod(m, int *)) {                          switch(optval) {
 #ifdef IPSEC_NAT_T  #ifdef IPSEC_NAT_T
                         case 0:                          case 0:
                                 inp->inp_flags &= ~INP_ESPINUDP_ALL;                                  inp->inp_flags &= ~INP_ESPINUDP_ALL;
Line 1060  udp_ctloutput(int op, struct socket *so,
Line 1078  udp_ctloutput(int op, struct socket *so,
                                 break;                                  break;
                         }                          }
                         break;                          break;
   
                 default:                  default:
                         error = ENOPROTOOPT;                          error = ENOPROTOOPT;
                         break;                          break;
                 }                  }
                 if (m != NULL) {  
                         m_free(m);  
                 }  
                 break;                  break;
   
         default:          default:
Line 1178  udp_usrreq(struct socket *so, int req, s
Line 1193  udp_usrreq(struct socket *so, int req, s
         s = splsoftnet();          s = splsoftnet();
   
         if (req == PRU_PURGEIF) {          if (req == PRU_PURGEIF) {
                   mutex_enter(softnet_lock);
                 in_pcbpurgeif0(&udbtable, (struct ifnet *)control);                  in_pcbpurgeif0(&udbtable, (struct ifnet *)control);
                 in_purgeif((struct ifnet *)control);                  in_purgeif((struct ifnet *)control);
                 in_pcbpurgeif(&udbtable, (struct ifnet *)control);                  in_pcbpurgeif(&udbtable, (struct ifnet *)control);
                   mutex_exit(softnet_lock);
                 splx(s);                  splx(s);
                 return (0);                  return (0);
         }          }
Line 1190  udp_usrreq(struct socket *so, int req, s
Line 1207  udp_usrreq(struct socket *so, int req, s
         if (req != PRU_SEND && req != PRU_SENDOOB && control)          if (req != PRU_SEND && req != PRU_SENDOOB && control)
                 panic("udp_usrreq: unexpected control mbuf");                  panic("udp_usrreq: unexpected control mbuf");
 #endif  #endif
         if (inp == 0 && req != PRU_ATTACH) {          if (req == PRU_ATTACH) {
                   sosetlock(so);
           } else if (inp == 0) {
                 error = EINVAL;                  error = EINVAL;
                 goto release;                  goto release;
         }          }
Line 1272  udp_usrreq(struct socket *so, int req, s
Line 1291  udp_usrreq(struct socket *so, int req, s
         {          {
                 struct in_addr laddr;                   /* XXX */                  struct in_addr laddr;                   /* XXX */
   
                   memset(&laddr, 0, sizeof laddr);
                 if (nam) {                  if (nam) {
                         laddr = inp->inp_laddr;         /* XXX */                          laddr = inp->inp_laddr;         /* XXX */
                         if ((so->so_state & SS_ISCONNECTED) != 0) {                          if ((so->so_state & SS_ISCONNECTED) != 0) {
Line 1334  release:
Line 1354  release:
         return (error);          return (error);
 }  }
   
 static void  
 udpstat_convert_to_user_cb(void *v1, void *v2, struct cpu_info *ci)  
 {  
         uint64_t *udpsc = v1;  
         uint64_t *udps = v2;  
         u_int i;  
   
         for (i = 0; i < UDP_NSTATS; i++)  
                 udps[i] += udpsc[i];  
 }  
   
 static void  
 udpstat_convert_to_user(uint64_t *udps)  
 {  
   
         memset(udps, 0, sizeof(uint64_t) * UDP_NSTATS);  
         percpu_foreach(udpstat_percpu, udpstat_convert_to_user_cb, udps);  
 }  
   
 static int  static int
 sysctl_net_inet_udp_stats(SYSCTLFN_ARGS)  sysctl_net_inet_udp_stats(SYSCTLFN_ARGS)
 {  {
         struct sysctlnode node;  
         uint64_t udps[UDP_NSTATS];  
   
         udpstat_convert_to_user(udps);          return (NETSTAT_SYSCTL(udpstat_percpu, UDP_NSTATS));
         node = *rnode;  
         node.sysctl_data = udps;  
         node.sysctl_size = sizeof(udps);  
         return (sysctl_lookup(SYSCTLFN_CALL(&node)));  
 }  }
   
 /*  /*
  * Sysctl for udp variables.   * Sysctl for udp variables.
  */   */
 SYSCTL_SETUP(sysctl_net_inet_udp_setup, "sysctl net.inet.udp subtree setup")  static void
   sysctl_net_inet_udp_setup(struct sysctllog **clog)
 {  {
   
         sysctl_createv(clog, 0, NULL, NULL,          sysctl_createv(clog, 0, NULL, NULL,
                        CTLFLAG_PERMANENT,                         CTLFLAG_PERMANENT,
                        CTLTYPE_NODE, "net", NULL,                         CTLTYPE_NODE, "net", NULL,
Line 1578  udp4_espinudp(struct mbuf **mp, int off,
Line 1573  udp4_espinudp(struct mbuf **mp, int off,
         esp4_input(n, iphdrlen);          esp4_input(n, iphdrlen);
 #endif  #endif
   
         /* We handled it, it shoudln't be handled by UDP */          /* We handled it, it shouldn't be handled by UDP */
         return 1;          return 1;
 }  }
 #endif  #endif

Legend:
Removed from v.1.167  
changed lines
  Added in v.1.187

CVSweb <webmaster@jp.NetBSD.org>