testCmdRequestDecoderIPv6() — netty Function Reference
Architecture documentation for the testCmdRequestDecoderIPv6() function in SocksCmdRequestDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fab42f80_bda0_c333_66a5_a27202121ec4["testCmdRequestDecoderIPv6()"] b310d236_86c5_c256_55ec_07e2514edd9f["SocksCmdRequestDecoderTest"] fab42f80_bda0_c333_66a5_a27202121ec4 -->|defined in| b310d236_86c5_c256_55ec_07e2514edd9f 6e40a760_b5e1_a0ac_d9e7_a4b3ac495a1a["testSocksCmdRequestDecoderWithDifferentParams()"] fab42f80_bda0_c333_66a5_a27202121ec4 -->|calls| 6e40a760_b5e1_a0ac_d9e7_a4b3ac495a1a style fab42f80_bda0_c333_66a5_a27202121ec4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java lines 69–80
@Test
public void testCmdRequestDecoderIPv6() throws UnknownHostException {
String[] hosts = {SocksCommonUtils.ipv6toStr(SocketUtils.addressByName("::1").getAddress())};
int[] ports = {1, 32769, 65535};
for (SocksCmdType cmdType : SocksCmdType.values()) {
for (String host : hosts) {
for (int port : ports) {
testSocksCmdRequestDecoderWithDifferentParams(cmdType, SocksAddressType.IPv6, host, port);
}
}
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testCmdRequestDecoderIPv6() do?
testCmdRequestDecoderIPv6() is a function in the netty codebase, defined in codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java.
Where is testCmdRequestDecoderIPv6() defined?
testCmdRequestDecoderIPv6() is defined in codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java at line 69.
What does testCmdRequestDecoderIPv6() call?
testCmdRequestDecoderIPv6() calls 1 function(s): testSocksCmdRequestDecoderWithDifferentParams.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free