mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 12:41:21 +00:00
Fixed incorrect ipv6 local address
This commit is contained in:
parent
95bbb9900b
commit
b5b491710c
2 changed files with 2 additions and 2 deletions
|
@ -829,7 +829,7 @@ NET_Socket(char *net_interface, int port, netsrc_t type, int family)
|
|||
if (!net_interface || !net_interface[0] ||
|
||||
!Q_stricmp(net_interface, "localhost"))
|
||||
{
|
||||
Host = (family == AF_INET6) ? "::" : "0.0.0.0";
|
||||
Host = (family == AF_INET6) ? "::1" : "0.0.0.0";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -821,7 +821,7 @@ NET_IPSocket(char *net_interface, int port, netsrc_t type, int family)
|
|||
if (!net_interface || !net_interface[0] ||
|
||||
!stricmp(net_interface, "localhost"))
|
||||
{
|
||||
Host = (family == AF_INET6) ? "::" : "0.0.0.0";
|
||||
Host = (family == AF_INET6) ? "::1" : "0.0.0.0";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue