diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-26 22:45:10 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-26 22:45:10 +0000 |
commit | f7fc8ebc3aae64a9b3c1848d1d6dd39c67f3eac1 (patch) | |
tree | 6d540bfab8fd355951aef4f2a4c002615163159d /sys/netinet/tcp_subr.c | |
parent | 05522e78d46294c43e20055cb78c5a946846a465 (diff) |
Make the definition of tcpstat in tcp_var.h extern.
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 7c1764ab993..15d34f607bf 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.26 2000/06/03 13:04:39 itojun Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.27 2000/06/26 22:45:09 art Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -123,6 +123,8 @@ int tcbhashsize = TCBHASHSIZE; extern int ip6_defhlim; #endif /* INET6 */ +struct tcpstat tcpstat; /* tcp statistics */ + /* * Tcp initialization */ |