summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1996-09-13 23:54:03 +0000
committerPaul Traina <pst@FreeBSD.org>1996-09-13 23:54:03 +0000
commit561c2ad31cf72b8a3d38593de65fc345c8431fd0 (patch)
tree85048a7fb454c38de72eca5e417ac523ce4bbf24
parent7b40aa327dde148ea4fccc538d68ec8cd274030e (diff)
Notes
-rw-r--r--sys/netinet/tcp_var.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h
index 06836c20d391..ebdadea68363 100644
--- a/sys/netinet/tcp_var.h
+++ b/sys/netinet/tcp_var.h
@@ -307,9 +307,9 @@ struct tcpstat {
#define TCPCTL_RTTDFLT 5 /* default RTT estimate */
#define TCPCTL_KEEPIDLE 6 /* keepalive idle timer */
#define TCPCTL_KEEPINTVL 7 /* interval to send keepalives */
-#define TCPCTL_KEEPINIT 8 /* timeout for establishing syn */
-#define TCPCTL_SENDSPACE 9 /* send buffer space */
-#define TCPCTL_RECVSPACE 10 /* receive buffer space */
+#define TCPCTL_SENDSPACE 8 /* send buffer space */
+#define TCPCTL_RECVSPACE 9 /* receive buffer space */
+#define TCPCTL_KEEPINIT 10 /* receive buffer space */
#define TCPCTL_MAXID 11
#define TCPCTL_NAMES { \
@@ -321,9 +321,9 @@ struct tcpstat {
{ "rttdflt", CTLTYPE_INT }, \
{ "keepidle", CTLTYPE_INT }, \
{ "keepintvl", CTLTYPE_INT }, \
- { "keepinit", CTLTYPE_INT }, \
{ "sendspace", CTLTYPE_INT }, \
{ "recvspace", CTLTYPE_INT }, \
+ { "keepinit", CTLTYPE_INT }, \
}
#ifdef KERNEL