Exemplo n.º 1
0
        public AsyncTcpSession(SessionBasedLink link, Socket socket)
            : base(link, socket)
        {
            recvEventArgs = new SocketAsyncEventArgs();
            sendEventArgs = new SocketAsyncEventArgs();

            recvEventArgs.Completed += OnReceiveCompleted;
            sendEventArgs.Completed += OnSendCompleted;
        }
Exemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the LinkSession class.
        /// </summary>
        protected LinkSession(SessionBasedLink link)
        {
            handle = handlePool.Acquire();
            this.link = link;

            rxBuffer = new Buffer();
            rxBufferList = new List<ArraySegment<byte>>();
            txBufferList = new List<ArraySegment<byte>>();

            eventsSending = new List<Event>();
            eventsToSend = new List<Event>();
            buffersSending = new List<SendBuffer>();

            Diag = new Diagnostics(this);
        }
Exemplo n.º 3
0
        /// <summary>
        /// Initializes a new instance of the LinkSession class.
        /// </summary>
        protected LinkSession(SessionBasedLink link)
        {
            this.link = link;

            rxBuffer = new Buffer();
            rxBufferList = new List<ArraySegment<byte>>();
            txBufferList = new List<ArraySegment<byte>>();

            eventsSending = new List<Event>();
            eventsToSend = new List<Event>();
            buffersSending = new List<SendBuffer>();
            buffersSent = new List<SendBuffer>();

            if (link.SessionRecoveryEnabled)
            {
                preConnectionQueue = new List<Event>();
            }

            Diag = new Diagnostics(this);
        }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the AbstractTcpSession class.
 /// </summary>
 protected AbstractTcpSession(SessionBasedLink link, Socket socket)
     : base(link)
 {
     this.socket = socket;
     remoteEndPoint = socket.RemoteEndPoint as IPEndPoint;
 }
Exemplo n.º 5
0
 public TcpSession(SessionBasedLink link, Socket socket)
     : base(link, socket)
 {
 }
Exemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the AbstractTcpSession class.
 /// </summary>
 protected AbstractTcpSession(SessionBasedLink link, Socket socket)
     : base(link)
 {
     this.socket = socket;
 }