Backed out changes in rev 1.5 that prevent sending FIN if in CLOSING

state. This causes an infinite loop in some rare cases (probably caused
by some other, much more difficult to find bug).
This commit is contained in:
David Greenman 1995-03-30 23:35:55 +00:00
parent ca9301398c
commit 8a31826613
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7504

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tcp_fsm.h 8.1 (Berkeley) 6/10/93
* $Id: tcp_fsm.h,v 1.4 1994/08/26 22:27:14 wollman Exp $
* $Id: tcp_fsm.h,v 1.5 1995/02/16 01:53:31 wollman Exp $
*/
#ifndef _NETINET_TCP_FSM_H_
@ -73,7 +73,7 @@
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_FIN|TH_ACK, TH_FIN|TH_ACK, TH_FIN|TH_ACK, TH_ACK, TH_ACK,
};
#endif