summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2004-02-27 16:28:24 +0000
committermarkus <markus@openbsd.org>2004-02-27 16:28:24 +0000
commit93741163578606e8edf36d2dfb37db373a813be8 (patch)
tree5415b9167473913556e7e1486a614147df06a153
parentTeach gcc the proper "set" syntax for __attribute__ ((alias)) to work (diff)
downloadwireguard-openbsd-93741163578606e8edf36d2dfb37db373a813be8.tar.xz
wireguard-openbsd-93741163578606e8edf36d2dfb37db373a813be8.zip
API change; counter for upcoming tcp_drain(); ok deraadt
-rw-r--r--sys/netinet/tcp_var.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h
index 6b3306026bc..2a9dc5d7dbb 100644
--- a/sys/netinet/tcp_var.h
+++ b/sys/netinet/tcp_var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_var.h,v 1.58 2004/02/15 11:16:08 markus Exp $ */
+/* $OpenBSD: tcp_var.h,v 1.59 2004/02/27 16:28:24 markus Exp $ */
/* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */
/*
@@ -412,6 +412,8 @@ struct tcpstat {
u_int64_t tcps_sc_dropped; /* # of SYNs dropped (no route/mem) */
u_int64_t tcps_sc_collisions; /* # of hash collisions */
u_int64_t tcps_sc_retransmitted;/* # of retransmissions */
+
+ u_int64_t tcps_conndrained; /* # of connections drained */
};
/*