You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.ArgumentException: IPv4 address 0.0.0.0 and IPv6 address ::0 are unspecified addresses that cannot be used as a target address.
Parameter name: hostNameOrAddress
at System.Net.Dns.GetHostEntry(String hostNameOrAddress)
at sys.net.Host.__hx_ctor_sys_net_Host(Host __hx_this, String name)
at Main.main()
IPAddress.Any is used for auto-selecting the address to bind sockets to, so is semi-important for that.
I workarounded this locally by adding a special case to sys.net.Host.new,
Result:
IPAddress.Any is used for auto-selecting the address to bind sockets to, so is semi-important for that.
I workarounded this locally by adding a special case to sys.net.Host.new,
but that doesn't fill out hostEntry and doesn't look like an elegant solution.
The text was updated successfully, but these errors were encountered: