diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-04-20 20:05:30 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-04-20 20:05:30 +0000 |
commit | ff28a27bf348e5011bb77cc21eec7b0504fc7902 (patch) | |
tree | 9b69fb338623ee80c0b7c4d69610fdceecd9e01e /sys/netinet/tcp_var.h | |
parent | 1468ea7f940516abc0e8efeb1feda245eae96cdf (diff) |
add tcps_rcvacktooold; ok deraadt
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index c4a619de4b5..30b9f4aa41c 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.61 2004/03/02 12:51:12 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.62 2004/04/20 20:05:29 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -397,6 +397,7 @@ struct tcpstat { u_int32_t tcps_rcvwinprobe; /* rcvd window probe packets */ u_int32_t tcps_rcvdupack; /* rcvd duplicate acks */ u_int32_t tcps_rcvacktoomuch; /* rcvd acks for unsent data */ + u_int32_t tcps_rcvacktooold; /* rcvd acks for old data */ u_int32_t tcps_rcvackpack; /* rcvd ack packets */ u_int64_t tcps_rcvackbyte; /* bytes acked by rcvd acks */ u_int32_t tcps_rcvwinupd; /* rcvd window update packets */ |