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