mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Undo rev 1.10, which took out TH_FIN from the CLOSING state. This
breaks simultaneous closes.
This commit is contained in:
parent
ef050c81c7
commit
5dc0f70d74
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ static u_char tcp_outflags[TCP_NSTATES] = {
|
|||
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, /* 7, CLOSING */
|
||||
TH_FIN|TH_ACK, /* 8, LAST_ACK */
|
||||
TH_ACK, /* 9, FIN_WAIT_2 */
|
||||
TH_ACK, /* 10, TIME_WAIT */
|
||||
|
|
|
|||
Loading…
Reference in a new issue