Home / Function/ testDecodeReservedSettingsKey() — netty Function Reference

testDecodeReservedSettingsKey() — netty Function Reference

Architecture documentation for the testDecodeReservedSettingsKey() function in Http3FrameCodecTest.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 4

Entity Profile

Dependency Diagram

graph TD
  5d230c3a_9419_cdf7_a6b5_7d327fbc0020["testDecodeReservedSettingsKey()"]
  5690f307_9248_ec29_2c84_6839dbcdc179["Http3FrameCodecTest"]
  5d230c3a_9419_cdf7_a6b5_7d327fbc0020 -->|defined in| 5690f307_9248_ec29_2c84_6839dbcdc179
  1e8e6f3b_68fa_d2ac_9fe1_0fc40379b3f0["testDecodeReservedSettingsKey0x2()"]
  1e8e6f3b_68fa_d2ac_9fe1_0fc40379b3f0 -->|calls| 5d230c3a_9419_cdf7_a6b5_7d327fbc0020
  9f893ddb_553d_91ee_6a86_94dc9381bfb1["testDecodeReservedSettingsKey0x3()"]
  9f893ddb_553d_91ee_6a86_94dc9381bfb1 -->|calls| 5d230c3a_9419_cdf7_a6b5_7d327fbc0020
  1a078e13_68e6_edda_8490_9c76c0d5b136["testDecodeReservedSettingsKey0x4()"]
  1a078e13_68e6_edda_8490_9c76c0d5b136 -->|calls| 5d230c3a_9419_cdf7_a6b5_7d327fbc0020
  30e08ba2_cf0e_1d4e_4baa_cdb81be560f4["testDecodeReservedSettingsKey0x5()"]
  30e08ba2_cf0e_1d4e_4baa_cdb81be560f4 -->|calls| 5d230c3a_9419_cdf7_a6b5_7d327fbc0020
  3496e374_4298_dede_43cf_385944c27d9b["testDecodeInvalidSettings()"]
  5d230c3a_9419_cdf7_a6b5_7d327fbc0020 -->|calls| 3496e374_4298_dede_43cf_385944c27d9b
  style 5d230c3a_9419_cdf7_a6b5_7d327fbc0020 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java lines 511–519

    private void testDecodeReservedSettingsKey(boolean delayQpackStreams, long key) {
        ByteBuf buffer = Unpooled.buffer();
        Http3CodecUtils.writeVariableLengthInteger(buffer, Http3CodecUtils.HTTP3_SETTINGS_FRAME_TYPE);
        Http3CodecUtils.writeVariableLengthInteger(buffer, 2);
        // Write the key and some random value... Both should be only 1 byte long each.
        Http3CodecUtils.writeVariableLengthInteger(buffer, key);
        Http3CodecUtils.writeVariableLengthInteger(buffer, 1);
        testDecodeInvalidSettings(delayQpackStreams, buffer);
    }

Domain

Subdomains

Frequently Asked Questions

What does testDecodeReservedSettingsKey() do?
testDecodeReservedSettingsKey() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java.
Where is testDecodeReservedSettingsKey() defined?
testDecodeReservedSettingsKey() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java at line 511.
What does testDecodeReservedSettingsKey() call?
testDecodeReservedSettingsKey() calls 1 function(s): testDecodeInvalidSettings.
What calls testDecodeReservedSettingsKey()?
testDecodeReservedSettingsKey() is called by 4 function(s): testDecodeReservedSettingsKey0x2, testDecodeReservedSettingsKey0x3, testDecodeReservedSettingsKey0x4, testDecodeReservedSettingsKey0x5.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free