mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-09 19:20:41 +03:00
Mayaqua/Network.c: Create UDP listener for every interface if ListenIP is wildcard
This commit is contained in:
parent
7881f8657a
commit
a1dff0f594
@ -17620,7 +17620,7 @@ void UdpListenerThread(THREAD *thread, void *param)
|
|||||||
{
|
{
|
||||||
IP *ip = LIST_DATA(iplist, i);
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
@ -17633,10 +17633,10 @@ void UdpListenerThread(THREAD *thread, void *param)
|
|||||||
UINT *port = LIST_DATA(u->PortList, j);
|
UINT *port = LIST_DATA(u->PortList, j);
|
||||||
bool existing = false;
|
bool existing = false;
|
||||||
|
|
||||||
/*if (IsZeroIP(ip) && (IS_SPECIAL_PORT(*port)))
|
if (IsZeroIP(ip) && (IS_SPECIAL_PORT(*port)))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}*/
|
}
|
||||||
|
|
||||||
|
|
||||||
for (k = 0; k < LIST_NUM(u->SockList); k++)
|
for (k = 0; k < LIST_NUM(u->SockList); k++)
|
||||||
|
Loading…
Reference in New Issue
Block a user