You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
@ -872,7 +872,7 @@ namespace MonoTests.System.Net.Sockets {
|
||||
public void JoinMulticastGroup4_Socket_NotBound ()
|
||||
{
|
||||
IPAddress mcast_addr = IPAddress.Parse ("224.0.0.23");
|
||||
IPAddress local_addr = Dns.GetHostEntry (string.Empty).AddressList [0];
|
||||
IPAddress local_addr = Dns.GetHostEntry ("localhost").AddressList [0];
|
||||
|
||||
using (UdpClient client = new UdpClient (AddressFamily.InterNetwork)) {
|
||||
client.JoinMulticastGroup (mcast_addr, local_addr);
|
||||
@ -980,7 +980,7 @@ namespace MonoTests.System.Net.Sockets {
|
||||
"BeginSend #4");
|
||||
}
|
||||
|
||||
IPAddress[] addresses = Dns.GetHostEntry (string.Empty).AddressList;
|
||||
IPAddress[] addresses = Dns.GetHostEntry ("localhost").AddressList;
|
||||
IPEndPoint ep = null;
|
||||
foreach (IPAddress a in addresses) {
|
||||
if (a.AddressFamily == AddressFamily.InterNetwork) {
|
||||
|
Reference in New Issue
Block a user