Remove a common (icmpstat).

This commit is contained in:
cube 2004-08-03 13:58:59 +00:00
parent 14cb917552
commit 19861ea4fe
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: icmp_var.h,v 1.22 2003/08/07 16:33:08 agc Exp $ */ /* $NetBSD: icmp_var.h,v 1.23 2004/08/03 13:58:59 cube Exp $ */
/* /*
* Copyright (c) 1982, 1986, 1993 * Copyright (c) 1982, 1986, 1993
@ -78,7 +78,7 @@ struct icmpstat {
} }
#ifdef _KERNEL #ifdef _KERNEL
struct icmpstat icmpstat; extern struct icmpstat icmpstat;
#ifdef __NO_STRICT_ALIGNMENT #ifdef __NO_STRICT_ALIGNMENT
#define ICMP_HDR_ALIGNED_P(ic) 1 #define ICMP_HDR_ALIGNED_P(ic) 1

View File

@ -1,4 +1,4 @@
/* $NetBSD: ip_icmp.c,v 1.86 2004/06/25 15:43:00 itojun Exp $ */ /* $NetBSD: ip_icmp.c,v 1.87 2004/08/03 13:58:59 cube Exp $ */
/* /*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@ -101,7 +101,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ip_icmp.c,v 1.86 2004/06/25 15:43:00 itojun Exp $"); __KERNEL_RCSID(0, "$NetBSD: ip_icmp.c,v 1.87 2004/08/03 13:58:59 cube Exp $");
#include "opt_ipsec.h" #include "opt_ipsec.h"
@ -152,6 +152,8 @@ int icmpprintfs = 0;
#endif #endif
int icmpreturndatabytes = 8; int icmpreturndatabytes = 8;
struct icmpstat icmpstat;
/* /*
* List of callbacks to notify when Path MTU changes are made. * List of callbacks to notify when Path MTU changes are made.
*/ */