1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

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

This commit is contained in:
domosekai 2021-07-11 16:15:29 +00:00
parent 7881f8657a
commit a1dff0f594

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++)