diff options
author | pst <pst@FreeBSD.org> | 1996-09-13 23:54:03 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-09-13 23:54:03 +0000 |
commit | 15a3ed0d4fc6b1a2656768e59c15f7779922df64 (patch) | |
tree | 85048a7fb454c38de72eca5e417ac523ce4bbf24 | |
parent | 460ca264a35697912ee6892edf43493bc7037685 (diff) | |
download | FreeBSD-src-15a3ed0d4fc6b1a2656768e59c15f7779922df64.zip FreeBSD-src-15a3ed0d4fc6b1a2656768e59c15f7779922df64.tar.gz |
Move TCPCTL_KEEPINIT to end of MIB list (sigh)
-rw-r--r-- | sys/netinet/tcp_var.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 06836c2..ebdadea 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 |