Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isIsatapAddress (0.1 seconds)

  1. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * @param ip {@link Inet6Address} to be examined for ISATAP address format
       * @return {@code true} if the argument is an ISATAP address
       */
      public static boolean isIsatapAddress(Inet6Address ip) {
    
        // If it's a Teredo address with the right port (41217, or 0xa101)
        // which would be encoded as 0x5efe then it can't be an ISATAP address.
        if (isTeredoAddress(ip)) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/net/InetAddressesTest.java

                );
    
        for (String validIsatapAddress : validIsatapAddresses) {
          InetAddress ip = InetAddresses.forString(validIsatapAddress);
          assertTrue(InetAddresses.isIsatapAddress((Inet6Address) ip));
          assertWithMessage("checking '%s'", validIsatapAddress)
              .that(InetAddresses.getIsatapIPv4Address((Inet6Address) ip))
              .isEqualTo(ipv4);
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 36.3K bytes
    - Click Count (0)
Back to Top