1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-05 23:35:07 +03:00

Merge PR #1426: Mayaqua/Network.c: Create UDP listener for every interface if ListenIP is wildcard

This commit is contained in:
Davide Beatrici
2021-07-11 21:35:01 +02:00
committed by GitHub

View File

@ -17620,7 +17620,7 @@ void UdpListenerThread(THREAD *thread, void *param)
{
IP *ip = LIST_DATA(iplist, i);
if (CmpIpAddr(ip, &u->ListenIP) != 0 && (!IsZeroIP(ip) || !IsZeroIP(&u->ListenIP)))
if (CmpIpAddr(ip, &u->ListenIP) != 0 && IsZeroIP(&u->ListenIP) == false)
{
continue;
}
@ -17633,10 +17633,10 @@ void UdpListenerThread(THREAD *thread, void *param)
UINT *port = LIST_DATA(u->PortList, j);
bool existing = false;
/*if (IsZeroIP(ip) && (IS_SPECIAL_PORT(*port)))
if (IsZeroIP(ip) && (IS_SPECIAL_PORT(*port)))
{
continue;
}*/
}
for (k = 0; k < LIST_NUM(u->SockList); k++)