summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_fsm.h
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>1999-04-07 22:22:06 +0000
committerjulian <julian@FreeBSD.org>1999-04-07 22:22:06 +0000
commit9e60b40925fe4dbc882d66c232811d1366a442c1 (patch)
treeb5e09ad5d604fc8dbe3b20b292c4cb905ecc8d2f /sys/netinet/tcp_fsm.h
parent4d675dd8bfaf2390f5816b9ce29efd07d15db1a4 (diff)
downloadFreeBSD-src-9e60b40925fe4dbc882d66c232811d1366a442c1.zip
FreeBSD-src-9e60b40925fe4dbc882d66c232811d1366a442c1.tar.gz
Two cosmetic changes, one a typo and the other, a clarification.
Diffstat (limited to 'sys/netinet/tcp_fsm.h')
-rw-r--r--sys/netinet/tcp_fsm.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/sys/netinet/tcp_fsm.h b/sys/netinet/tcp_fsm.h
index 804a55e..4a53556 100644
--- a/sys/netinet/tcp_fsm.h
+++ b/sys/netinet/tcp_fsm.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tcp_fsm.h 8.1 (Berkeley) 6/10/93
- * $Id: tcp_fsm.h,v 1.9 1997/02/22 09:41:39 peter Exp $
+ * $Id: tcp_fsm.h,v 1.10 1997/08/16 19:15:38 wollman Exp $
*/
#ifndef _NETINET_TCP_FSM_H_
@@ -71,10 +71,18 @@
* if all data queued for output is included in the segment.
*/
static u_char tcp_outflags[TCP_NSTATES] = {
- TH_RST|TH_ACK, 0, TH_SYN, TH_SYN|TH_ACK,
- TH_ACK, TH_ACK,
- TH_FIN|TH_ACK, TH_ACK, TH_FIN|TH_ACK, TH_ACK, TH_ACK,
-};
+ TH_RST|TH_ACK, /* 0, CLOSED */
+ 0, /* 1, LISTEN */
+ TH_SYN, /* 2, SYN_SENT */
+ TH_SYN|TH_ACK, /* 3, SYN_RECEIVED */
+ TH_ACK, /* 4, ESTABLISHED */
+ TH_ACK, /* 5, CLOSE_WAIT */
+ TH_FIN|TH_ACK, /* 6, FIN_WAIT_1 */
+ TH_ACK, /* 7, CLOSING */
+ TH_FIN|TH_ACK, /* 8, LAST_ACK */
+ TH_ACK, /* 9, FIN_WAIT_2 */
+ TH_ACK, /* 10, TIME_WAIT */
+};
#endif
#ifdef KPROF
OpenPOWER on IntegriCloud