├── .editorconfig ├── .flake8 ├── .github ├── release.yml └── workflows │ ├── main.yml │ ├── pull_request.yml │ └── pull_request_label.yml ├── .gitignore ├── .licenseignore ├── .mailmap ├── .spi.yml ├── .swift-format ├── .unacceptablelanguageignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── FuzzTesting ├── FailCases │ ├── .empty │ ├── clusterfuzz-testcase-minimized-ServerFuzzer-release-4565313872592896 │ ├── clusterfuzz-testcase-minimized-ServerFuzzer-release-5635720084062208 │ ├── clusterfuzz-testcase-minimized-ServerFuzzer-release-6318975863095296 │ └── clusterfuzz-testcase-minimized-ServerFuzzer-release-6530582404792320 ├── Package.swift ├── README.md ├── Sources │ └── FuzzHTTP2 │ │ └── main.swift └── do_build.sh ├── IntegrationTests ├── plugin_echo.sh ├── plugin_junit_xml.sh ├── run-single-test.sh ├── run-tests.sh ├── test_functions.sh └── tests_01_allocation_counters │ ├── Thresholds │ ├── 6.0.json │ ├── 6.1.json │ ├── 6.2.json │ ├── nightly-main.json │ └── nightly-next.json │ ├── defines.sh │ ├── test_01_allocation_counts.sh │ └── test_01_resources │ ├── run-nio-http2-alloc-counter-tests.sh │ ├── shared.swift │ ├── test_1k_requests.swift │ ├── test_client_server_h1_request_response.swift │ ├── test_client_server_request_response.swift │ ├── test_create_client_stream_channel.swift │ ├── test_get_100000_headers_canonical_form.swift │ ├── test_hpack_decoding.swift │ └── test_stream_teardown_100_concurrent.swift ├── LICENSE.txt ├── NOTICE.txt ├── Package.swift ├── README.md ├── SECURITY.md ├── Sources ├── NIOHPACK │ ├── DynamicHeaderTable.swift │ ├── HPACKDecoder.swift │ ├── HPACKEncoder.swift │ ├── HPACKErrors.swift │ ├── HPACKHeader.swift │ ├── HeaderTables.swift │ ├── HuffmanCoding.swift │ ├── HuffmanTables.swift │ ├── IndexedHeaderTable.swift │ ├── IntegerCoding.swift │ └── StaticHeaderTable.swift ├── NIOHTTP2 │ ├── ConnectionStateMachine │ │ ├── ConnectionStateMachine.swift │ │ ├── ConnectionStreamsState.swift │ │ ├── FrameReceivingStates │ │ │ ├── MayReceiveFrames.swift │ │ │ ├── ReceivingDataState.swift │ │ │ ├── ReceivingGoAwayState.swift │ │ │ ├── ReceivingHeadersState.swift │ │ │ ├── ReceivingPushPromiseState.swift │ │ │ ├── ReceivingRstStreamState.swift │ │ │ └── ReceivingWindowUpdateState.swift │ │ ├── FrameSendingStates │ │ │ ├── MaySendFrames.swift │ │ │ ├── SendingDataState.swift │ │ │ ├── SendingGoawayState.swift │ │ │ ├── SendingHeadersState.swift │ │ │ ├── SendingPushPromiseState.swift │ │ │ ├── SendingRstStreamState.swift │ │ │ └── SendingWindowUpdateState.swift │ │ ├── HTTP2SettingsState.swift │ │ ├── HasExtendedConnectSettings.swift │ │ ├── HasFlowControlWindows.swift │ │ ├── HasLocalSettings.swift │ │ ├── HasRemoteSettings.swift │ │ ├── LocallyQuiescingState.swift │ │ ├── QuiescingState.swift │ │ ├── RemotelyQuiescingState.swift │ │ ├── SendAndReceiveGoawayState.swift │ │ └── StateMachineResult.swift │ ├── ContentLengthVerifier.swift │ ├── DOSHeuristics.swift │ ├── Docs.docc │ │ ├── Articles │ │ │ └── Multiplexing-for-maintainers.md │ │ └── index.md │ ├── Error+Any.swift │ ├── Frame Buffers │ │ ├── ConcurrentStreamBuffer.swift │ │ ├── ControlFrameBuffer.swift │ │ ├── OutboundFlowControlBuffer.swift │ │ └── OutboundFrameBuffer.swift │ ├── GlitchesMonitor.swift │ ├── HPACKHeaders+Validation.swift │ ├── HTTP2ChannelHandler+InboundStreamMultiplexer.swift │ ├── HTTP2ChannelHandler+InlineStreamMultiplexer.swift │ ├── HTTP2ChannelHandler.swift │ ├── HTTP2CommonInboundStreamMultiplexer.swift │ ├── HTTP2ConnectionStateChange.swift │ ├── HTTP2Error.swift │ ├── HTTP2ErrorCode.swift │ ├── HTTP2FlowControlWindow.swift │ ├── HTTP2Frame.swift │ ├── HTTP2FrameEncoder.swift │ ├── HTTP2FrameParser.swift │ ├── HTTP2PingData.swift │ ├── HTTP2PipelineHelpers.swift │ ├── HTTP2Settings.swift │ ├── HTTP2Stream.swift │ ├── HTTP2StreamChannel+OutboundStreamMultiplexer.swift │ ├── HTTP2StreamChannel.swift │ ├── HTTP2StreamDelegate.swift │ ├── HTTP2StreamID.swift │ ├── HTTP2StreamMultiplexer.swift │ ├── HTTP2ToHTTP1Codec.swift │ ├── HTTP2UserEvents.swift │ ├── InboundEventBuffer.swift │ ├── InboundWindowManager.swift │ ├── MultiplexerAbstractChannel.swift │ ├── NIOHTTP2FrameDelegate.swift │ ├── StreamChannelFlowController.swift │ ├── StreamChannelList.swift │ ├── StreamMap.swift │ ├── StreamStateMachine.swift │ ├── UnsafeTransfer.swift │ └── WatermarkedFlowController.swift ├── NIOHTTP2PerformanceTester │ ├── Bench1Conn10kRequests.swift │ ├── Benchmark.swift │ ├── HPACKHeaderCanonicalFormBenchmark.swift │ ├── HPACKHeaderDecodingBenchmark.swift │ ├── HPACKHeaderEncodingBenchmark.swift │ ├── HPACKHeadersNormalizationOfHTTPHeadersBenchmark.swift │ ├── HuffmanDecodingBenchmark.swift │ ├── HuffmanEncodingBenchmark.swift │ ├── ServerOnly10KRequestsBenchmark.swift │ ├── StreamTeardownBenchmark.swift │ └── main.swift └── NIOHTTP2Server │ └── main.swift ├── Tests ├── NIOHPACKTests │ ├── Fixtures │ │ ├── large_complex_huffman_b64.txt │ │ └── large_huffman_b64.txt │ ├── HPACKCodingTests.swift │ ├── HPACKHeadersTests.swift │ ├── HPACKIntegrationTests.swift │ ├── HPACKRegressionTests.swift │ ├── HeaderTableTests.swift │ ├── HuffmanCodingTests.swift │ └── IntegerCodingTests.swift ├── NIOHTTP2Tests │ ├── CircularBufferExtensionsTests.swift │ ├── CompoundOutboundBufferTest.swift │ ├── ConcurrentStreamBufferTest.swift │ ├── ConfiguringPipelineAsyncMultiplexerTests.swift │ ├── ConfiguringPipelineInlineMultiplexerTests.swift │ ├── ConfiguringPipelineTests.swift │ ├── ConfiguringPipelineWithFramePayloadStreamsTests.swift │ ├── ConnectionStateMachineTests.swift │ ├── ContentLengthVerifierTests.swift │ ├── ControlFrameBufferTests.swift │ ├── DOSHeuristicsTests.swift │ ├── GlitchesMonitorTests.swift │ ├── HTTP2ErrorTests.swift │ ├── HTTP2FrameParserTests.swift │ ├── HTTP2FramePayloadStreamMultiplexerTests.swift │ ├── HTTP2FramePayloadToHTTP1CodecTests.swift │ ├── HTTP2InlineStreamMultiplexerTests.swift │ ├── HTTP2StreamMultiplexerTests.swift │ ├── HTTP2ToHTTP1CodecTests.swift │ ├── InboundWindowManagerTests.swift │ ├── OutboundFlowControlBufferTests.swift │ ├── ReentrancyTests.swift │ ├── SimpleClientServerFramePayloadStreamTests.swift │ ├── SimpleClientServerInlineStreamMultiplexerTests.swift │ ├── SimpleClientServerTests.swift │ ├── StreamChannelFlowControllerTests.swift │ ├── StreamIDTests.swift │ ├── StreamMapTests.swift │ └── TestUtilities.swift └── hpack-test-case │ ├── README.md │ ├── genratiotbl.py │ ├── go-hpack │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── haskell-http2-linear-huffman │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── haskell-http2-linear │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── haskell-http2-naive-huffman │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── haskell-http2-naive │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── haskell-http2-static-huffman │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── haskell-http2-static │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── nghttp2-16384-4096 │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ └── story_30.json │ ├── nghttp2-change-table-size │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ └── story_30.json │ ├── nghttp2 │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── node-http2-hpack │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── python-hpack │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ ├── raw-data │ ├── story_00.json │ ├── story_01.json │ ├── story_02.json │ ├── story_03.json │ ├── story_04.json │ ├── story_05.json │ ├── story_06.json │ ├── story_07.json │ ├── story_08.json │ ├── story_09.json │ ├── story_10.json │ ├── story_11.json │ ├── story_12.json │ ├── story_13.json │ ├── story_14.json │ ├── story_15.json │ ├── story_16.json │ ├── story_17.json │ ├── story_18.json │ ├── story_19.json │ ├── story_20.json │ ├── story_21.json │ ├── story_22.json │ ├── story_23.json │ ├── story_24.json │ ├── story_25.json │ ├── story_26.json │ ├── story_27.json │ ├── story_28.json │ ├── story_29.json │ ├── story_30.json │ └── story_31.json │ └── util │ └── gen_ratio.py └── scripts ├── analyze_performance_results.rb ├── cachegrindify.sh ├── integration_tests.sh └── test_h2spec.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.github/workflows/pull_request_label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenseignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.licenseignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.mailmap -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/.swift-format -------------------------------------------------------------------------------- /.unacceptablelanguageignore: -------------------------------------------------------------------------------- 1 | Tests/hpack-test-case/*/story_20.json 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /FuzzTesting/FailCases/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-4565313872592896: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-4565313872592896 -------------------------------------------------------------------------------- /FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-5635720084062208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-5635720084062208 -------------------------------------------------------------------------------- /FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-6318975863095296: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-6318975863095296 -------------------------------------------------------------------------------- /FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-6530582404792320: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-ServerFuzzer-release-6530582404792320 -------------------------------------------------------------------------------- /FuzzTesting/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/Package.swift -------------------------------------------------------------------------------- /FuzzTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/README.md -------------------------------------------------------------------------------- /FuzzTesting/Sources/FuzzHTTP2/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/Sources/FuzzHTTP2/main.swift -------------------------------------------------------------------------------- /FuzzTesting/do_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/FuzzTesting/do_build.sh -------------------------------------------------------------------------------- /IntegrationTests/plugin_echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/plugin_echo.sh -------------------------------------------------------------------------------- /IntegrationTests/plugin_junit_xml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/plugin_junit_xml.sh -------------------------------------------------------------------------------- /IntegrationTests/run-single-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/run-single-test.sh -------------------------------------------------------------------------------- /IntegrationTests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/run-tests.sh -------------------------------------------------------------------------------- /IntegrationTests/test_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/test_functions.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/Thresholds/6.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/Thresholds/6.0.json -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/Thresholds/6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/Thresholds/6.1.json -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/Thresholds/6.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/Thresholds/6.2.json -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/Thresholds/nightly-main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/Thresholds/nightly-main.json -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/Thresholds/nightly-next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/Thresholds/nightly-next.json -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/defines.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_allocation_counts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_allocation_counts.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/run-nio-http2-alloc-counter-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/run-nio-http2-alloc-counter-tests.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/shared.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_1k_requests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_1k_requests.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_client_server_h1_request_response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_client_server_h1_request_response.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_client_server_request_response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_client_server_request_response.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_create_client_stream_channel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_create_client_stream_channel.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_get_100000_headers_canonical_form.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_get_100000_headers_canonical_form.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_hpack_decoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_hpack_decoding.swift -------------------------------------------------------------------------------- /IntegrationTests/tests_01_allocation_counters/test_01_resources/test_stream_teardown_100_concurrent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/IntegrationTests/tests_01_allocation_counters/test_01_resources/test_stream_teardown_100_concurrent.swift -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sources/NIOHPACK/DynamicHeaderTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/DynamicHeaderTable.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HPACKDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HPACKDecoder.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HPACKEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HPACKEncoder.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HPACKErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HPACKErrors.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HPACKHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HPACKHeader.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HeaderTables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HeaderTables.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HuffmanCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HuffmanCoding.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/HuffmanTables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/HuffmanTables.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/IndexedHeaderTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/IndexedHeaderTable.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/IntegerCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/IntegerCoding.swift -------------------------------------------------------------------------------- /Sources/NIOHPACK/StaticHeaderTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHPACK/StaticHeaderTable.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/ConnectionStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/ConnectionStateMachine.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/ConnectionStreamsState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/ConnectionStreamsState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/MayReceiveFrames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/MayReceiveFrames.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingDataState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingDataState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingGoAwayState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingGoAwayState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingHeadersState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingHeadersState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingPushPromiseState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingPushPromiseState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingRstStreamState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingRstStreamState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingWindowUpdateState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameReceivingStates/ReceivingWindowUpdateState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/MaySendFrames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/MaySendFrames.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingDataState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingDataState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingGoawayState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingGoawayState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingHeadersState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingHeadersState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingPushPromiseState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingPushPromiseState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingRstStreamState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingRstStreamState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingWindowUpdateState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/FrameSendingStates/SendingWindowUpdateState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/HTTP2SettingsState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/HTTP2SettingsState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/HasExtendedConnectSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/HasExtendedConnectSettings.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/HasFlowControlWindows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/HasFlowControlWindows.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/HasLocalSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/HasLocalSettings.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/HasRemoteSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/HasRemoteSettings.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/LocallyQuiescingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/LocallyQuiescingState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/QuiescingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/QuiescingState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/RemotelyQuiescingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/RemotelyQuiescingState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/SendAndReceiveGoawayState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/SendAndReceiveGoawayState.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ConnectionStateMachine/StateMachineResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ConnectionStateMachine/StateMachineResult.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/ContentLengthVerifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/ContentLengthVerifier.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/DOSHeuristics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/DOSHeuristics.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Docs.docc/Articles/Multiplexing-for-maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Docs.docc/Articles/Multiplexing-for-maintainers.md -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Docs.docc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Docs.docc/index.md -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Error+Any.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Error+Any.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Frame Buffers/ConcurrentStreamBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Frame Buffers/ConcurrentStreamBuffer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Frame Buffers/ControlFrameBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Frame Buffers/ControlFrameBuffer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Frame Buffers/OutboundFlowControlBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Frame Buffers/OutboundFlowControlBuffer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/Frame Buffers/OutboundFrameBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/Frame Buffers/OutboundFrameBuffer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/GlitchesMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/GlitchesMonitor.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HPACKHeaders+Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HPACKHeaders+Validation.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2ChannelHandler+InboundStreamMultiplexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2ChannelHandler+InboundStreamMultiplexer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2ChannelHandler+InlineStreamMultiplexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2ChannelHandler+InlineStreamMultiplexer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2ChannelHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2ChannelHandler.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2CommonInboundStreamMultiplexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2CommonInboundStreamMultiplexer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2ConnectionStateChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2ConnectionStateChange.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2Error.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2ErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2ErrorCode.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2FlowControlWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2FlowControlWindow.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2Frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2Frame.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2FrameEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2FrameEncoder.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2FrameParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2FrameParser.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2PingData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2PingData.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2PipelineHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2PipelineHelpers.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2Settings.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2Stream.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2StreamChannel+OutboundStreamMultiplexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2StreamChannel+OutboundStreamMultiplexer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2StreamChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2StreamChannel.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2StreamDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2StreamDelegate.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2StreamID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2StreamID.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2ToHTTP1Codec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2ToHTTP1Codec.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/HTTP2UserEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/HTTP2UserEvents.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/InboundEventBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/InboundEventBuffer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/InboundWindowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/InboundWindowManager.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/MultiplexerAbstractChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/MultiplexerAbstractChannel.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/NIOHTTP2FrameDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/NIOHTTP2FrameDelegate.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/StreamChannelFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/StreamChannelFlowController.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/StreamChannelList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/StreamChannelList.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/StreamMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/StreamMap.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/StreamStateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/StreamStateMachine.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/UnsafeTransfer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/UnsafeTransfer.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2/WatermarkedFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2/WatermarkedFlowController.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/Bench1Conn10kRequests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/Bench1Conn10kRequests.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/Benchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/Benchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/HPACKHeaderCanonicalFormBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/HPACKHeaderCanonicalFormBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/HPACKHeaderDecodingBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/HPACKHeaderDecodingBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/HPACKHeaderEncodingBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/HPACKHeaderEncodingBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/HPACKHeadersNormalizationOfHTTPHeadersBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/HPACKHeadersNormalizationOfHTTPHeadersBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/HuffmanDecodingBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/HuffmanDecodingBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/HuffmanEncodingBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/HuffmanEncodingBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/ServerOnly10KRequestsBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/ServerOnly10KRequestsBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/StreamTeardownBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/StreamTeardownBenchmark.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2PerformanceTester/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2PerformanceTester/main.swift -------------------------------------------------------------------------------- /Sources/NIOHTTP2Server/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Sources/NIOHTTP2Server/main.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/Fixtures/large_complex_huffman_b64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/Fixtures/large_complex_huffman_b64.txt -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/Fixtures/large_huffman_b64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/Fixtures/large_huffman_b64.txt -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/HPACKCodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/HPACKCodingTests.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/HPACKHeadersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/HPACKHeadersTests.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/HPACKIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/HPACKIntegrationTests.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/HPACKRegressionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/HPACKRegressionTests.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/HeaderTableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/HeaderTableTests.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/HuffmanCodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/HuffmanCodingTests.swift -------------------------------------------------------------------------------- /Tests/NIOHPACKTests/IntegerCodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHPACKTests/IntegerCodingTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/CircularBufferExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/CircularBufferExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/CompoundOutboundBufferTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/CompoundOutboundBufferTest.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ConcurrentStreamBufferTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ConcurrentStreamBufferTest.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ConfiguringPipelineAsyncMultiplexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ConfiguringPipelineAsyncMultiplexerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ConfiguringPipelineInlineMultiplexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ConfiguringPipelineInlineMultiplexerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ConfiguringPipelineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ConfiguringPipelineTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ConfiguringPipelineWithFramePayloadStreamsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ConfiguringPipelineWithFramePayloadStreamsTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ConnectionStateMachineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ConnectionStateMachineTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ContentLengthVerifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ContentLengthVerifierTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ControlFrameBufferTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ControlFrameBufferTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/DOSHeuristicsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/DOSHeuristicsTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/GlitchesMonitorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/GlitchesMonitorTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2ErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2ErrorTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2FrameParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2FrameParserTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2FramePayloadStreamMultiplexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2FramePayloadStreamMultiplexerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2FramePayloadToHTTP1CodecTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2FramePayloadToHTTP1CodecTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2InlineStreamMultiplexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2InlineStreamMultiplexerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2StreamMultiplexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2StreamMultiplexerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/HTTP2ToHTTP1CodecTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/HTTP2ToHTTP1CodecTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/InboundWindowManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/InboundWindowManagerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/OutboundFlowControlBufferTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/OutboundFlowControlBufferTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/ReentrancyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/ReentrancyTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/SimpleClientServerFramePayloadStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/SimpleClientServerFramePayloadStreamTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/SimpleClientServerInlineStreamMultiplexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/SimpleClientServerInlineStreamMultiplexerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/SimpleClientServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/SimpleClientServerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/StreamChannelFlowControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/StreamChannelFlowControllerTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/StreamIDTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/StreamIDTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/StreamMapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/StreamMapTests.swift -------------------------------------------------------------------------------- /Tests/NIOHTTP2Tests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/NIOHTTP2Tests/TestUtilities.swift -------------------------------------------------------------------------------- /Tests/hpack-test-case/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/README.md -------------------------------------------------------------------------------- /Tests/hpack-test-case/genratiotbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/genratiotbl.py -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/go-hpack/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/go-hpack/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear-huffman/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear-huffman/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-linear/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-linear/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive-huffman/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive-huffman/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-naive/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-naive/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static-huffman/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static-huffman/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/haskell-http2-static/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/haskell-http2-static/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-16384-4096/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-16384-4096/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2-change-table-size/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2-change-table-size/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/nghttp2/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/nghttp2/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/node-http2-hpack/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/node-http2-hpack/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/python-hpack/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/python-hpack/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_00.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_01.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_02.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_03.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_04.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_05.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_06.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_07.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_08.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_09.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_10.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_11.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_12.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_13.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_14.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_15.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_16.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_17.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_18.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_19.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_20.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_21.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_22.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_23.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_24.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_25.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_26.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_27.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_28.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_29.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_30.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/raw-data/story_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/raw-data/story_31.json -------------------------------------------------------------------------------- /Tests/hpack-test-case/util/gen_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/Tests/hpack-test-case/util/gen_ratio.py -------------------------------------------------------------------------------- /scripts/analyze_performance_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/scripts/analyze_performance_results.rb -------------------------------------------------------------------------------- /scripts/cachegrindify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/scripts/cachegrindify.sh -------------------------------------------------------------------------------- /scripts/integration_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/scripts/integration_tests.sh -------------------------------------------------------------------------------- /scripts/test_h2spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-http2/HEAD/scripts/test_h2spec.sh --------------------------------------------------------------------------------