testCmdRequestDecoderIPv4() — netty Function Reference
Architecture documentation for the testCmdRequestDecoderIPv4() function in SocksCmdRequestDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d971d68f_ae7f_5c02_6f9f_f79297f8f9f9["testCmdRequestDecoderIPv4()"] b310d236_86c5_c256_55ec_07e2514edd9f["SocksCmdRequestDecoderTest"] d971d68f_ae7f_5c02_6f9f_f79297f8f9f9 -->|defined in| b310d236_86c5_c256_55ec_07e2514edd9f 6e40a760_b5e1_a0ac_d9e7_a4b3ac495a1a["testSocksCmdRequestDecoderWithDifferentParams()"] d971d68f_ae7f_5c02_6f9f_f79297f8f9f9 -->|calls| 6e40a760_b5e1_a0ac_d9e7_a4b3ac495a1a style d971d68f_ae7f_5c02_6f9f_f79297f8f9f9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java lines 56–67
@Test
public void testCmdRequestDecoderIPv4() {
String[] hosts = {"127.0.0.1", };
int[] ports = {1, 32769, 65535 };
for (SocksCmdType cmdType : SocksCmdType.values()) {
for (String host : hosts) {
for (int port : ports) {
testSocksCmdRequestDecoderWithDifferentParams(cmdType, SocksAddressType.IPv4, host, port);
}
}
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testCmdRequestDecoderIPv4() do?
testCmdRequestDecoderIPv4() is a function in the netty codebase, defined in codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java.
Where is testCmdRequestDecoderIPv4() defined?
testCmdRequestDecoderIPv4() is defined in codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java at line 56.
What does testCmdRequestDecoderIPv4() call?
testCmdRequestDecoderIPv4() 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