Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for percentIndex (0.04 sec)

  1. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

                final String hostAddress = address.getHostAddress();
                // Remove zone ID if present (e.g., %eth0)
                final int percentIndex = hostAddress.indexOf('%');
                final String cleanAddress = percentIndex >= 0 ? hostAddress.substring(0, percentIndex) : hostAddress;
                // Compress the IPv6 address
                final String compressed = compressIPv6(cleanAddress);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 08:31:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top