Home / Function/ enableConnectProtocolBoundCheck() — netty Function Reference

enableConnectProtocolBoundCheck() — netty Function Reference

Architecture documentation for the enableConnectProtocolBoundCheck() function in Http2SettingsTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  97f0497e_6cdf_99e8_80a4_30d1598843fe["enableConnectProtocolBoundCheck()"]
  910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"]
  97f0497e_6cdf_99e8_80a4_30d1598843fe -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a
  style 97f0497e_6cdf_99e8_80a4_30d1598843fe fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 252–261

    @ParameterizedTest(name = "{displayName} [{index}] value={0}")
    @ValueSource(longs = {MIN_VALUE, -1, 2, MAX_VALUE})
    public void enableConnectProtocolBoundCheck(final long value) {
        assertThrows(IllegalArgumentException.class, new Executable() {
            @Override
            public void execute() {
                settings.put(Http2CodecUtil.SETTINGS_ENABLE_CONNECT_PROTOCOL, (Long) value);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does enableConnectProtocolBoundCheck() do?
enableConnectProtocolBoundCheck() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is enableConnectProtocolBoundCheck() defined?
enableConnectProtocolBoundCheck() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 252.

Analyze Your Own Codebase

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

Try Supermodel Free