Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/netinet/udp_usrreq.c,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- src/sys/netinet/udp_usrreq.c 2001/12/21 02:51:08 1.92 +++ src/sys/netinet/udp_usrreq.c 2002/05/12 20:33:51 1.93 @@ -1,4 +1,4 @@ -/* $NetBSD: udp_usrreq.c,v 1.92 2001/12/21 02:51:08 itojun Exp $ */ +/* $NetBSD: udp_usrreq.c,v 1.93 2002/05/12 20:33:51 matt Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -65,7 +65,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: udp_usrreq.c,v 1.92 2001/12/21 02:51:08 itojun Exp $"); +__KERNEL_RCSID(0, "$NetBSD: udp_usrreq.c,v 1.93 2002/05/12 20:33:51 matt Exp $"); #include "opt_inet.h" #include "opt_ipsec.h" @@ -139,6 +139,9 @@ int udpcksum = 1; int udpcksum = 0; /* XXX */ #endif +struct inpcbtable udbtable; +struct udpstat udpstat; + #ifdef INET static void udp4_sendup __P((struct mbuf *, int, struct sockaddr *, struct socket *));