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