Home / Function/ testIPv4CorrectAddress() — netty Function Reference

testIPv4CorrectAddress() — netty Function Reference

Architecture documentation for the testIPv4CorrectAddress() function in DefaultSocks5CommandRequestTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  00a98c65_23b3_9fb8_8e4f_cee5ce00ba73["testIPv4CorrectAddress()"]
  4d133b87_aedc_e775_f472_b4d9705890c8["DefaultSocks5CommandRequestTest"]
  00a98c65_23b3_9fb8_8e4f_cee5ce00ba73 -->|defined in| 4d133b87_aedc_e775_f472_b4d9705890c8
  style 00a98c65_23b3_9fb8_8e4f_cee5ce00ba73 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-socks/src/test/java/io/netty/handler/codec/socksx/v5/DefaultSocks5CommandRequestTest.java lines 44–51

    @Test
    public void testIPv4CorrectAddress() {
        try {
            new DefaultSocks5CommandRequest(Socks5CommandType.BIND, Socks5AddressType.IPv4, "54.54.1111.253", 1);
        } catch (Exception e) {
            assertTrue(e instanceof IllegalArgumentException);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testIPv4CorrectAddress() do?
testIPv4CorrectAddress() is a function in the netty codebase, defined in codec-socks/src/test/java/io/netty/handler/codec/socksx/v5/DefaultSocks5CommandRequestTest.java.
Where is testIPv4CorrectAddress() defined?
testIPv4CorrectAddress() is defined in codec-socks/src/test/java/io/netty/handler/codec/socksx/v5/DefaultSocks5CommandRequestTest.java at line 44.

Analyze Your Own Codebase

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

Try Supermodel Free