Exemplo n.º 1
0
        private int _initialStreamWindowSize     = 1024 * 96;  // Larger than the default 64kb

        public Http2Protocol(ConnectionContext connection)
        {
            _connection      = connection;
            _httpFrameWriter = new Http2FrameWriter(connection, _outputFlowControl, NullLogger.Instance);
            _hpackDecoder    = new HPackDecoder(_headerTableSize, _maxRequestHeaderFieldSize);
        }