Example #1
0
 public WcpChannel(string httpPrefixed, WebSocket socket, ANetService netService) : base(netService)
 {
     this.HttpPrefixed = httpPrefixed;
     this.NetSocket    = socket;
     this.RecvParser   = ParserStorage.GetParser();
     this.SendParser   = ParserStorage.GetParser();
 }
Example #2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="socket">Socket</param>
 /// <param name="netService">网络服务</param>
 /// <param name="connectConv">网络连接Conv</param>
 public KcpChannel(Socket socket, IPEndPoint endPoint, ANetService netService, int connectConv)
     : base(netService, connectConv)
 {
     this.RemoteEndPoint = endPoint;
     this.NetSocket      = socket;
     this.RecvParser     = ParserStorage.GetParser(1400);
     this.SendParser     = ParserStorage.GetParser(1400);
 }
Example #3
0
 /// <summary>
 /// 构造函数,Accept
 /// </summary>
 /// <param name="endPoint">IP/端口</param>
 /// <param name="socket">TCP socket类</param>
 /// <param name="netService">通讯网络服务对象</param>
 public TcpChannel(IPEndPoint endPoint, Socket socket, ANetService netService) : base(netService)
 {
     this.LocalEndPoint      = endPoint;
     this.RecvParser         = ParserStorage.GetParser();
     this.SendParser         = ParserStorage.GetParser();
     this.NetSocket          = socket;
     this.InArgs             = new SocketAsyncEventArgs();
     this.OutArgs            = new SocketAsyncEventArgs();
     this.InArgs.Completed  += OnComplete;
     this.OutArgs.Completed += OnComplete;
 }
Example #4
0
 public WcpChannel(string httpPrefixed, ANetService netService, Network network) : base(netService, network)
 {
     this.HttpPrefixed = httpPrefixed;
     this.RecvParser   = ParserStorage.GetParser();
     this.SendParser   = ParserStorage.GetParser();
 }
Example #5
0
 /// <summary>
 /// 构造函数,Connect
 /// </summary>
 /// <param name="endPoint">Ip/端口</param>
 /// <param name="netService">通讯网络服务对象</param>
 /// <param name="network">网络类</param>
 public TcpChannel(IPEndPoint endPoint, ANetService netService, Network network) : base(netService, network)
 {
     this.RemoteEndPoint = endPoint;
     this.RecvParser     = ParserStorage.GetParser();
     this.SendParser     = ParserStorage.GetParser();
 }