diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-02-27 16:28:25 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-02-27 16:28:25 +0000 |
commit | e371f34162c9f3950de6eda633385923605d8994 (patch) | |
tree | 30b387c9c6cffdbbc74f3bb9601defc0fbef69b0 /sys/netinet/tcp_var.h | |
parent | aa5607644298d7da2b485f27455b0f809f204d4c (diff) |
API change; counter for upcoming tcp_drain(); ok deraadt
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
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 */ }; /* |