- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for isIsatapAddress (0.06 seconds)
-
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) -
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)