mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge pull request #1063 from dnobori/200101_fix_securenat_ecn
Merge pull request #1063: Bugfix: Fix the SecureNAT connection problem with ignoring TCP ECN bit enabled packets
This commit is contained in:
commit
1a5a11d146
@ -1446,7 +1446,7 @@ void NnTcpRecvForInternet(VH *v, UINT src_ip, UINT src_port, UINT dest_ip, UINT
|
||||
// Create a new session because there is no existing one
|
||||
UINT public_port;
|
||||
|
||||
if (old_tcp->Flag != TCP_SYN)
|
||||
if (((old_tcp->Flag & TCP_SYN) && ((old_tcp->Flag & TCP_ACK) == 0)) == false)
|
||||
{
|
||||
// If there is no existing session, pass through only for SYN packet
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user