Home / Function/ copyIpv4MappedIpv6Address() — netty Function Reference

copyIpv4MappedIpv6Address() — netty Function Reference

Architecture documentation for the copyIpv4MappedIpv6Address() function in NativeInetAddress.java from the netty codebase.

Function java Buffer Search called by 1

Entity Profile

Dependency Diagram

graph TD
  2467e30f_264f_e807_046a_286539b8d1a9["copyIpv4MappedIpv6Address()"]
  8c187a6a_d8a7_5d2b_d6bb_c850cff3c2c3["NativeInetAddress"]
  2467e30f_264f_e807_046a_286539b8d1a9 -->|defined in| 8c187a6a_d8a7_5d2b_d6bb_c850cff3c2c3
  b00d13a5_4f19_23f6_c395_dd77ba52a972["ipv4MappedIpv6Address()"]
  b00d13a5_4f19_23f6_c395_dd77ba52a972 -->|calls| 2467e30f_264f_e807_046a_286539b8d1a9
  style 2467e30f_264f_e807_046a_286539b8d1a9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-unix-common/src/main/java/io/netty/channel/unix/NativeInetAddress.java lines 65–68

    public static void copyIpv4MappedIpv6Address(byte[] ipv4, byte[] ipv6) {
        System.arraycopy(IPV4_MAPPED_IPV6_PREFIX, 0, ipv6, 0, IPV4_MAPPED_IPV6_PREFIX.length);
        System.arraycopy(ipv4, 0, ipv6, 12, ipv4.length);
    }

Domain

Subdomains

Frequently Asked Questions

What does copyIpv4MappedIpv6Address() do?
copyIpv4MappedIpv6Address() is a function in the netty codebase, defined in transport-native-unix-common/src/main/java/io/netty/channel/unix/NativeInetAddress.java.
Where is copyIpv4MappedIpv6Address() defined?
copyIpv4MappedIpv6Address() is defined in transport-native-unix-common/src/main/java/io/netty/channel/unix/NativeInetAddress.java at line 65.
What calls copyIpv4MappedIpv6Address()?
copyIpv4MappedIpv6Address() is called by 1 function(s): ipv4MappedIpv6Address.

Analyze Your Own Codebase

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

Try Supermodel Free