22 lines
425 B
C#
22 lines
425 B
C#
using System;
|
|
|
|
using PixelServer.Net;
|
|
using System.Net;
|
|
using System.Threading.Tasks;
|
|
|
|
using SBRL.Utilities;
|
|
using System.Net.NetworkInformation;
|
|
using System.Net.Sockets;
|
|
|
|
namespace PixelServer
|
|
{
|
|
class MainClass
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
DiscoveryBeacon beacon = new DiscoveryBeacon(IPAddress.Parse("239.62.148.30"));
|
|
//AsyncTools.ForgetTask(beacon.Emit());
|
|
beacon.Emit().Wait();
|
|
}
|
|
}
|
|
}
|