diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-12 06:19:58 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-12 06:19:58 +0000 |
commit | ff3bb7ab3a7ab8dd059fb2d214e64cf9bbf3fc1c (patch) | |
tree | 2510f2a37d8eeb1201ad93dce056ea294c965d46 /sys/netinet/tcp_var.h | |
parent | 8d96188f5d4188ff11fa23a19245c842f402b710 (diff) |
TCP Persist handling; from 4.4BSD Lite2 (via NetBSD PR 2335)
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 ecae9f2469d..dde7c1b1e77 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.3 1996/03/03 22:30:50 niklas Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.4 1996/09/12 06:19:57 tholo Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -181,6 +181,7 @@ struct tcpstat { u_long tcps_timeoutdrop; /* conn. dropped in rxmt timeout */ u_long tcps_rexmttimeo; /* retransmit timeouts */ u_long tcps_persisttimeo; /* persist timeouts */ + u_long tcps_persistdrop; /* connections dropped in persist */ u_long tcps_keeptimeo; /* keepalive timeouts */ u_long tcps_keepprobe; /* keepalive probes sent */ u_long tcps_keepdrops; /* connections dropped in keepalive */ |