Example #1
0
 public KService(string host, int port)
 {
     this.TimeNow = (uint)TimeHelper.Now();
     this.socket  = new UdpClient(new IPEndPoint(IPAddress.Parse(host), port));
     this.StartRecv();
 }
Example #2
0
File: KService.cs Project: wiyi/ET
 public KService()
 {
     this.TimeNow = (uint)TimeHelper.Now();
     this.socket  = new UdpClient(new IPEndPoint(IPAddress.Any, 0));
     this.StartRecv();
 }
Example #3
0
 public KService(IPEndPoint ipEndPoint)
 {
     this.TimeNow = (uint)TimeHelper.Now();
     this.socket  = new UdpClient(ipEndPoint);
     this.StartRecv();
 }