testIpv4MappedIp6GetByName() — netty Function Reference
Architecture documentation for the testIpv4MappedIp6GetByName() function in NetUtilTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD be0754e8_85ec_b9c0_79d1_648f7eb3c597["testIpv4MappedIp6GetByName()"] 545234a8_c93e_9bed_bd0e_6c5542a33149["NetUtilTest"] be0754e8_85ec_b9c0_79d1_648f7eb3c597 -->|defined in| 545234a8_c93e_9bed_bd0e_6c5542a33149 style be0754e8_85ec_b9c0_79d1_648f7eb3c597 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/NetUtilTest.java lines 759–768
@Test
public void testIpv4MappedIp6GetByName() {
for (Entry<String, String> testEntry : ipv4MappedToIPv6AddressStrings.entrySet()) {
String srcIp = testEntry.getKey();
String dstIp = testEntry.getValue();
Inet6Address inet6Address = getByName(srcIp, true);
assertNotNull(inet6Address, srcIp + ", " + dstIp);
assertEquals(dstIp, toAddressString(inet6Address, true), srcIp);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testIpv4MappedIp6GetByName() do?
testIpv4MappedIp6GetByName() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/NetUtilTest.java.
Where is testIpv4MappedIp6GetByName() defined?
testIpv4MappedIp6GetByName() is defined in common/src/test/java/io/netty/util/NetUtilTest.java at line 759.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free