Exemplo n.º 1
0
        public void ChannelWindowAdjustMessageConstructorTest1()
        {
            uint localChannelNumber           = 0; // TODO: Initialize to an appropriate value
            uint bytesToAdd                   = 0; // TODO: Initialize to an appropriate value
            ChannelWindowAdjustMessage target = new ChannelWindowAdjustMessage(localChannelNumber, bytesToAdd);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Exemplo n.º 2
0
        public void ChannelWindowAdjustMessageConstructorTest()
        {
            ChannelWindowAdjustMessage target = new ChannelWindowAdjustMessage();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Exemplo n.º 3
0
        private void HandleMessage(ChannelWindowAdjustMessage message)
        {
            var channel = FindChannelByServerId <Channel>(message.RecipientChannel);

            channel.ClientAdjustWindow(message.BytesToAdd);
        }