1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2025-01-01 12:54:07 +00:00

Native accept ACK after FIN/ACK

This commit is contained in:
M66B 2016-02-13 14:14:21 +01:00
parent 3ffbd588b3
commit 84397de61b

View file

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