Date: Mon, 25 Jun 2001 21:11:45 -0400 From: FastPathNow@netscape.net To: freebsd-net@freebsd.org Subject: TCPS_HAVERCVDFIN not considering all possible conditions? Message-ID: <45D08C2C.558913DD.375A6AF3@netscape.net>
next in thread | raw e-mail | index | archive | help
Would appreciate comments on this: Currently in tcp_fsm.h its defined as : #define TCPS_HAVERCVDFIN(s) ((s) >= TCPS_TIME_WAIT) when IMHO it should be: (to consider all possible cases of having recd a FIN?) #define TCPS_HAVERCVDFIN(s) ( ((s) >= TCPS_TIME_WAIT) || ((s) == TCPS_CLOSE_WAIT) || ((s) == TCPS_LAST_ACK) || ((s) == TCPS_CLOSING) ) -AG __________________________________________________________________ Get your own FREE, personal Netscape Webmail account today at http://webmail.netscape.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?45D08C2C.558913DD.375A6AF3>