Home / Function/ testDisableProtocols() — netty Function Reference

testDisableProtocols() — netty Function Reference

Architecture documentation for the testDisableProtocols() function in SSLEngineTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  404a365d_50fb_36d2_906f_70e88dc2f432["testDisableProtocols()"]
  9150c92a_2afc_b83a_c3bf_86dfac6e9d9b["SSLEngineTest"]
  404a365d_50fb_36d2_906f_70e88dc2f432 -->|defined in| 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b
  bf19737b_7dc7_9dfd_0a67_ae31448ebbe8["protocols()"]
  404a365d_50fb_36d2_906f_70e88dc2f432 -->|calls| bf19737b_7dc7_9dfd_0a67_ae31448ebbe8
  e3b541e6_b593_4b1f_a637_da19020e73df["ciphers()"]
  404a365d_50fb_36d2_906f_70e88dc2f432 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df
  78ad5fe5_58d2_9877_f633_22a7048c0e5e["cleanupServerSslEngine()"]
  404a365d_50fb_36d2_906f_70e88dc2f432 -->|calls| 78ad5fe5_58d2_9877_f633_22a7048c0e5e
  f6915f7b_bea2_ba4b_1048_139ec9ec9498["cleanupClientSslContext()"]
  404a365d_50fb_36d2_906f_70e88dc2f432 -->|calls| f6915f7b_bea2_ba4b_1048_139ec9ec9498
  style 404a365d_50fb_36d2_906f_70e88dc2f432 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 3032–3043

    @MethodSource("newTestParams")
    @ParameterizedTest
    public void testDisableProtocols(SSLEngineTestParam param) throws Exception {
        testDisableProtocols(param, SslProtocols.SSL_v2, SslProtocols.SSL_v2);
        testDisableProtocols(param, SslProtocols.SSL_v3, SslProtocols.SSL_v2, SslProtocols.SSL_v3);
        testDisableProtocols(param, SslProtocols.TLS_v1, SslProtocols.SSL_v2, SslProtocols.SSL_v3, SslProtocols.TLS_v1);
        testDisableProtocols(param,
                SslProtocols.TLS_v1_1, SslProtocols.SSL_v2, SslProtocols.SSL_v3,
                SslProtocols.TLS_v1, SslProtocols.TLS_v1_1);
        testDisableProtocols(param, SslProtocols.TLS_v1_2, SslProtocols.SSL_v2,
                SslProtocols.SSL_v3, SslProtocols.TLS_v1, SslProtocols.TLS_v1_1, SslProtocols.TLS_v1_2);
    }

Domain

Subdomains

Frequently Asked Questions

What does testDisableProtocols() do?
testDisableProtocols() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is testDisableProtocols() defined?
testDisableProtocols() is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 3032.
What does testDisableProtocols() call?
testDisableProtocols() calls 4 function(s): ciphers, cleanupClientSslContext, cleanupServerSslEngine, protocols.

Analyze Your Own Codebase

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

Try Supermodel Free