- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isIPv6 (0.03 sec)
-
guava/src/com/google/common/net/InetAddresses.java
* @param isIpv6 whether the created address should be IPv4 or IPv6 * @return the BigInteger converted to an address * @throws IllegalArgumentException if the BigInteger is not between 0 and maximum value for IPv4 * or IPv6 respectively */ private static InetAddress fromBigInteger(BigInteger address, boolean isIpv6) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
public InetAddress getAddress() { return address; } /** * Check if this is an IPv6 address * * @return true if IPv6, false if IPv4 */ public boolean isIpv6() { return ipv6; } /** * Check if RSS is supported * * @return true if RSS capable */ public boolean isRssCapable() { return rssCapable;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
* @param isIpv6 whether the created address should be IPv4 or IPv6 * @return the BigInteger converted to an address * @throws IllegalArgumentException if the BigInteger is not between 0 and maximum value for IPv4 * or IPv6 respectively */ private static InetAddress fromBigInteger(BigInteger address, boolean isIpv6) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
} public InetAddress getAddress() { return address; } public int getFlags() { return flags; } public boolean isIPv4() { return (flags & IPV4) != 0; } public boolean isIPv6() { return (flags & IPV6) != 0; } } public void addNewIPAddress(InetAddress address) { newIPAddresses.add(new WitnessIPAddress(address)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0)