Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for decodeIpv4Suffix (0.12 sec)

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

            i++
          } else if (input.startsWith(".", startIndex = i)) {
            // If we see a '.', rewind to the beginning of the previous group and parse as IPv4.
            if (!decodeIpv4Suffix(input, groupOffset, limit, address, b - 2)) return null
            b += 2 // We rewound two bytes and then added four.
            break
          } else {
            return null // Wrong delimiter.
          }
        }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top