コード例 #1
0
ファイル: TcpServer.cs プロジェクト: luohuazhiyu/sunsocket
 //构造函数
 public TcpServer(TcpServerConfig config, ILoger loger)
 {
     this.Config = config;
     endPoint = new IPEndPoint(IPAddress.Parse(config.IP), config.Port);
     this.sessionPool = new TcpSessionPool();
     this.sessionPool.TcpServer = this;
     this.Loger = loger;
 }
コード例 #2
0
ファイル: TcpServer.cs プロジェクト: tim-xia/sunsocket
 //构造函数
 public TcpServer(TcpServerConfig config, ILoger loger)
 {
     this.Config                = config;
     endPoint                   = new IPEndPoint(IPAddress.Parse(config.IP), config.Port);
     this.sessionPool           = new TcpSessionPool();
     this.sessionPool.TcpServer = this;
     this.Loger                 = loger;
 }