summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorart <art@openbsd.org>2000-06-26 22:45:09 +0000
committerart <art@openbsd.org>2000-06-26 22:45:09 +0000
commit3a11fd2794b24abfe9da0749f1ec1eda78c26063 (patch)
tree37037fa7ca658e03d3650b58d91254a921555121 /sys/netinet/tcp_subr.c
parentConvert to new timeouts. (diff)
downloadwireguard-openbsd-3a11fd2794b24abfe9da0749f1ec1eda78c26063.tar.xz
wireguard-openbsd-3a11fd2794b24abfe9da0749f1ec1eda78c26063.zip
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.c4
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
*/