diff options
author | wollman <wollman@FreeBSD.org> | 1995-09-21 17:19:28 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-09-21 17:19:28 +0000 |
commit | 2e2040e424a06b015c95c38b05e4925a2398ab10 (patch) | |
tree | 85f8c679233d5ba68aec0828022d9a9e2241e485 /sys/netinet/tcp_var.h | |
parent | 15d56af06f069a1f8dc3a8a4b106b91a3d249f96 (diff) | |
download | FreeBSD-src-2e2040e424a06b015c95c38b05e4925a2398ab10.zip FreeBSD-src-2e2040e424a06b015c95c38b05e4925a2398ab10.tar.gz |
Second try: get 4.4-Lite-2 into the source tree. The conflicts don't
matter because none of our working source files are on the CSRG branch
any more.
Obtained from: 4.4BSD-Lite-2
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 8a8e751..0ed9517 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1982, 1986, 1993, 1994 + * Copyright (c) 1982, 1986, 1993, 1994, 1995 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)tcp_var.h 8.3 (Berkeley) 4/10/94 + * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95 */ /* @@ -100,7 +100,7 @@ struct tcpcb { * transmit timing stuff. See below for scale of srtt and rttvar. * "Variance" is actually smoothed difference. */ - short t_idle; /* inactivity time */ + u_short t_idle; /* inactivity time */ short t_rtt; /* round trip time */ tcp_seq t_rtseq; /* sequence number being timed */ short t_srtt; /* smoothed round-trip time */ @@ -229,6 +229,8 @@ struct tcpstat { u_long tcps_predack; /* times hdr predict ok for acks */ u_long tcps_preddat; /* times hdr predict ok for data pkts */ u_long tcps_pcbcachemiss; + u_long tcps_persistdrop; /* timeout in persist state */ + u_long tcps_badsyn; /* bogus SYN, e.g. premature ACK */ }; #ifdef KERNEL |