static void Main(string[] args)
        {
            ClientEmulatorLogging.Log(ClientEmulatorType.Main, 0, MessageType.Info, "Booting Emulator Up");

            Emulators.CDKeyServerClientEmulator client = new Emulators.CDKeyServerClientEmulator(
                new IPEndPoint(IPAddress.Parse(CDKeyServerIP),
                               DefaultCDKeyServerUDPPort),
                DefaultCDKeyClientEmulatorRoundTrips,
                DefaultCDKeyClientEmulatorInterPacketGap
                );

            Console.WriteLine("Finished");
            Console.ReadLine();
        }