Ejemplo n.º 1
0
 /**
  * Method: ConfigureSysInfoServer
  * Access: public
  * Description: Start telnet server for SysInfo service
  */
 static public void ConfigureSysInfoServer(ushort _portnum)
 {
     siServer = new SysInfoServer((int)_portnum, 256);
 }
Ejemplo n.º 2
0
 /**
  * Method: ConfigureSysInfoServer
  * Access: public
  * Description: Start telnet server for SysInfo service
  */
 static public void ConfigureSysInfoServer(ushort _portnum)
 {
     // Start SysInfoServer
     siServer = new SysInfoServer((int)_portnum, 256);
     siServer.startServer();
 }