The following C # code works correctly in Vista, but with an XP error:
SocketException: An invalid argument was specified.
ErrorCode is 10022.
XP Firewall is disabled.
using System;
using System.Net;
using System.Net.Sockets;
public class SocketTest
{
[STAThread]
public static void Main()
{
MySocket s = new MySocket();
Console.WriteLine("done");
Console.ReadLine();
}
public class MySocket : Socket
{
public const ushort SocketTtl = 4;
public const string Address = "239.255.255.250";
public IPAddress IPAddress = IPAddress.Parse(Address);
public MySocket()
: base(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp)
{
SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, SocketTtl);
SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(IPAddress));
}
}
}
Any ideas?
source
share