public SCLSession(SCLServer server) : base(server)
 {
     SCLServer = server;
 }
Exemple #2
0
 /// <summary>
 /// Start the server for server side protection with IP and Port specified.
 /// </summary>
 public static void Start(string IP, int Port)
 {
     server = new SCLServer(IPAddress.Parse(IP), Port);
     server.StartSCLServer();
 }