Example #1
0
 public void BeginProcess()
 {
     ClientDatabase = new Database(Program.serverDatabaseConnString);
     //log.InfoFormat("Player connected! @ {0}.", skt.RemoteEndPoint);
     handler     = new NetworkHandler(this, skt);
     DataHandler = new DatabaseHandler(this);
     handler.BeginHandling();
 }
Example #2
0
 public void BeginProcess()
 {
     log.InfoFormat($"Received client @ {Socket.RemoteEndPoint}.");
     handler = new NetworkHandler(this, Socket);
     handler.BeginHandling();
 }
Example #3
0
 public void BeginProcess()
 {
     log.InfoFormat("Received client @ {0}.", skt.RemoteEndPoint);
     handler = new NetworkHandler(this, skt);
     handler.BeginHandling();
 }
 public void BeginProcess()
 {
     log.InfoFormat($"Received client @ {Socket.RemoteEndPoint}.");
     handler = new NetworkHandler(this, Socket);
     handler.BeginHandling();
 }
Example #5
0
 public void BeginProcess()
 {
     handler = new NetworkHandler(this, skt);
     handler.BeginHandling();
 }
Example #6
0
 public void BeginProcess()
 {
     log.InfoFormat("Received client @ {0}.", skt.RemoteEndPoint);
     handler = new NetworkHandler(this, skt);
     handler.BeginHandling();
 }
Example #7
0
 public void BeginProcess()
 {
     Console.WriteLine($"Received client @ {Socket.RemoteEndPoint}.");
     _handler = new NetworkHandler(this, Socket);
     _handler.BeginHandling();
 }
Example #8
0
 public void BeginProcess()
 {
     handler = new NetworkHandler(this, skt);
     handler.BeginHandling();
 }