Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isIpv6 (0.3 sec)

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

                }
                // Add brackets for IPv6
                return "[" + address + "]";
            }
            return address;
        }
    
        /**
         * Compresses an IPv6 address string to its canonical compressed form.
         * For example, "0:0:0:0:0:0:0:1" becomes "::1"
         *
         * @param ipv6Address the IPv6 address string to compress
         * @return the compressed IPv6 address string
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 08:31:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolverTest.java

            IdnDnsResolver resolver = new IdnDnsResolver();
    
            // Test IPv6 loopback address with brackets
            String host = "[::1]";
            InetAddress[] addresses = resolver.resolve(host);
            assertNotNull(addresses);
            assertTrue(addresses.length > 0);
            // IPv6 loopback can be represented as ::1 or 0:0:0:0:0:0:0:1
            String hostAddress = addresses[0].getHostAddress();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 06 07:24:43 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

         */
        @Override
        public InetAddress[] resolve(final String host) throws UnknownHostException {
            // Handle IPv6 addresses in bracket notation
            if (host != null && host.length() > 2 && host.startsWith("[") && host.endsWith("]")) {
                // Remove brackets for IPv6 address resolution
                final String ipv6Address = host.substring(1, host.length() - 1);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 06 07:24:43 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    domain.title = Fess
    
    # Search Engine
    
    # The type of search engine backend (e.g., default, opensearch).
    search_engine.type=default
    # The URL of the search engine HTTP endpoint.
    # For IPv6 environments, use brackets around the IPv6 address (e.g., http://[::1]:9201)
    search_engine.http.url=http://localhost:9201
    # Path to SSL certificate authorities for secure HTTP connections.
    search_engine.http.ssl.certificate_authorities=
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. http://localhost:9201 <br>
         * comment: <br>
         * The URL of the search engine HTTP endpoint.<br>
         * For IPv6 environments, use brackets around the IPv6 address (e.g., http://[::1]:9201)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEngineHttpUrl();
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top