Remove a common (icmpstat).
This commit is contained in:
parent
14cb917552
commit
19861ea4fe
|
@ -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
|
||||
|
@ -78,7 +78,7 @@ struct icmpstat {
|
|||
}
|
||||
|
||||
#ifdef _KERNEL
|
||||
struct icmpstat icmpstat;
|
||||
extern struct icmpstat icmpstat;
|
||||
|
||||
#ifdef __NO_STRICT_ALIGNMENT
|
||||
#define ICMP_HDR_ALIGNED_P(ic) 1
|
||||
|
|
|
@ -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.
|
||||
|
@ -101,7 +101,7 @@
|
|||
*/
|
||||
|
||||
#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"
|
||||
|
||||
|
@ -152,6 +152,8 @@ int icmpprintfs = 0;
|
|||
#endif
|
||||
int icmpreturndatabytes = 8;
|
||||
|
||||
struct icmpstat icmpstat;
|
||||
|
||||
/*
|
||||
* List of callbacks to notify when Path MTU changes are made.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue