// Finalize TCP-Server public static void TCP_Free() { TCPServer = null; }
// Initalize TCP-Server public static void TCP_Init(IPAddress AIP, int APort) { TCPServer = new TCPServer(AIP, APort); TCPServer.Start(); }