PERFORCE change 142687 for review

Andre Oppermann andre at FreeBSD.org
Sun Jun 1 11:14:16 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=142687

Change 142687 by andre at andre_flirtbox on 2008/06/01 11:13:53

	Make TCPS_HAVERCVDFIN() do what its name suggests and its consumers
	actually depend on.

Affected files ...

.. //depot/projects/tcp_new/netinet/tcp_fsm.h#2 edit

Differences ...

==== //depot/projects/tcp_new/netinet/tcp_fsm.h#2 (text+ko) ====

@@ -73,7 +73,7 @@
 
 #define	TCPS_HAVERCVDSYN(s)	((s) >= TCPS_SYN_RECEIVED)
 #define	TCPS_HAVEESTABLISHED(s)	((s) >= TCPS_ESTABLISHED)
-#define	TCPS_HAVERCVDFIN(s)	((s) >= TCPS_TIME_WAIT)
+#define	TCPS_HAVERCVDFIN(s)	((s) == TCPS_CLOSE_WAIT || (s) >= TCPS_CLOSING)
 
 #ifdef	TCPOUTFLAGS
 /*


More information about the p4-projects mailing list