mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Restore R-UDP listener when ListenIP is ::
This commit is contained in:
parent
a9239a6aab
commit
b4aad09f21
@ -5212,13 +5212,23 @@ RUDP_STACK *NewRUDP(bool server_mode, char *svc_name, RUDP_STACK_INTERRUPTS_PROC
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (rand_port_id == 0)
|
IP ip;
|
||||||
|
if (IsZeroIP(listen_ip) && IsIP6(listen_ip))
|
||||||
{
|
{
|
||||||
sock = NewUDPEx2(port, false, listen_ip);
|
ZeroIP4(&ip);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sock = NewUDPEx2RandMachineAndExePath(false, listen_ip, 0, rand_port_id);
|
CopyIP(&ip, listen_ip);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rand_port_id == 0)
|
||||||
|
{
|
||||||
|
sock = NewUDPEx2(port, false, &ip);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sock = NewUDPEx2RandMachineAndExePath(false, &ip, 0, rand_port_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user