Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isMappedIpv4Address (0.06 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt

     */
    internal fun canonicalizeInetAddress(address: ByteArray): ByteArray =
      when {
        isMappedIpv4Address(address) -> address.sliceArray(12 until 16)
        else -> address
      }
    
    /** Returns true for IPv6 addresses like `0000:0000:0000:0000:0000:ffff:XXXX:XXXX`. */
    private fun isMappedIpv4Address(address: ByteArray): Boolean {
      if (address.size != 16) return false
    
      for (i in 0 until 10) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InetAddresses.java

       * @param ipString {@code String} to be examined for embedded IPv4-mapped IPv6 address format
       * @return {@code true} if the argument is a valid "mapped" address
       * @since 10.0
       */
      public static boolean isMappedIPv4Address(String ipString) {
        byte[] bytes = ipStringToBytes(ipString, null);
        if (bytes != null && bytes.length == 16) {
          for (int i = 0; i < 10; i++) {
            if (bytes[i] != 0) {
              return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/InetAddresses.java

       * @param ipString {@code String} to be examined for embedded IPv4-mapped IPv6 address format
       * @return {@code true} if the argument is a valid "mapped" address
       * @since 10.0
       */
      public static boolean isMappedIPv4Address(String ipString) {
        byte[] bytes = ipStringToBytes(ipString, null);
        if (bytes != null && bytes.length == 16) {
          for (int i = 0; i < 10; i++) {
            if (bytes[i] != 0) {
              return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
Back to top