mirror of https://github.com/M66B/NetGuard.git
Native accept ACK after FIN/ACK
This commit is contained in:
parent
3ffbd588b3
commit
84397de61b
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue