Native accept ACK after FIN/ACK

This commit is contained in:
M66B 2016-02-13 14:14:21 +01:00
parent 3ffbd588b3
commit 84397de61b
1 changed files with 4 additions and 0 deletions

View File

@ -637,6 +637,10 @@ jboolean handle_tcp(const struct arguments *args,
else if (cur->state == TCP_LAST_ACK) else if (cur->state == TCP_LAST_ACK)
cur->state = TCP_CLOSING; cur->state = TCP_CLOSING;
else if (cur->state == TCP_CLOSE_WAIT) {
// ACK after FIN/ACK
}
else if (cur->state == TCP_FIN_WAIT1) { else if (cur->state == TCP_FIN_WAIT1) {
// Do nothing // Do nothing
} }