Home / Function/ testSslRenegotiationRejected() — netty Function Reference

testSslRenegotiationRejected() — netty Function Reference

Architecture documentation for the testSslRenegotiationRejected() function in SocketSslClientRenegotiateTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  bcbd04f8_1173_db09_d4b6_aa4078cb4925["testSslRenegotiationRejected()"]
  7705e7ae_e3a1_f466_3809_922b706a3f4f["SocketSslClientRenegotiateTest"]
  bcbd04f8_1173_db09_d4b6_aa4078cb4925 -->|defined in| 7705e7ae_e3a1_f466_3809_922b706a3f4f
  11e8b493_20bc_c0cc_00a3_e69d2cfb7c7a["reset()"]
  bcbd04f8_1173_db09_d4b6_aa4078cb4925 -->|calls| 11e8b493_20bc_c0cc_00a3_e69d2cfb7c7a
  style bcbd04f8_1173_db09_d4b6_aa4078cb4925 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslClientRenegotiateTest.java lines 125–139

    @DisabledIf("openSslNotAvailable")
    @ParameterizedTest(name = "{index}: serverEngine = {0}, clientEngine = {1}, delegate = {2}")
    @MethodSource("data")
    @Timeout(value = 30000, unit = TimeUnit.MILLISECONDS)
    public void testSslRenegotiationRejected(final SslContext serverCtx, final SslContext clientCtx,
                                             final boolean delegate, TestInfo testInfo) throws Throwable {
        assumeTrue(OpenSsl.isRenegotiationSupported());
        assumeTrue(OpenSsl.isAvailable());
        run(testInfo, new Runner<ServerBootstrap, Bootstrap>() {
            @Override
            public void run(ServerBootstrap serverBootstrap, Bootstrap bootstrap) throws Throwable {
                testSslRenegotiationRejected(sb, cb, serverCtx, clientCtx, delegate);
            }
        });
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testSslRenegotiationRejected() do?
testSslRenegotiationRejected() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslClientRenegotiateTest.java.
Where is testSslRenegotiationRejected() defined?
testSslRenegotiationRejected() is defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslClientRenegotiateTest.java at line 125.
What does testSslRenegotiationRejected() call?
testSslRenegotiationRejected() calls 1 function(s): reset.

Analyze Your Own Codebase

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

Try Supermodel Free