Esempio n. 1
0
 private void local_ConnectionRequested(object sender, NetSockConnectionRequestEventArgs e)
 {
     this.server.Accept(e.Client);
     account.Log(new ConnectionTextInformation("Accepted client !"), 0);
     account.Init();
 }
Esempio n. 2
0
 private void local_ConnectionRequested(object sender, NetSockConnectionRequestEventArgs e)
 {
     this.server.Accept(e.Client);
     account.Log(new ConnectionTextInformation("Accepted client !"), 0);
     account.Init();
 }
Esempio n. 3
0
 private void server_ConnectionRequested(object sender, NetSockConnectionRequestEventArgs e)
 {
     account.Log(new ConnectionTextInformation("Connection Requested: " + ((System.Net.IPEndPoint)e.Client.RemoteEndPoint).Address.ToString()), 4);
     this.server.Accept(e.Client);
     account.Init();
 }
Esempio n. 4
0
 private void server_ConnectionRequested(object sender, NetSockConnectionRequestEventArgs e)
 {
     account.Log(new ConnectionTextInformation("Connection Requested: " + ((System.Net.IPEndPoint)e.Client.RemoteEndPoint).Address.ToString()),4);
     this.server.Accept(e.Client);
     account.Init();
 }