Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEmbeddedIPv4ClientAddress (0.14 sec)

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

       * @return {@link Inet4Address} of embedded IPv4 client address
       * @throws IllegalArgumentException if the argument does not have a valid embedded IPv4 address
       */
      public static Inet4Address getEmbeddedIPv4ClientAddress(Inet6Address ip) {
        if (isCompatIPv4Address(ip)) {
          return getCompatIPv4Address(ip);
        }
    
        if (is6to4Address(ip)) {
          return get6to4IPv4Address(ip);
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       * @return {@link Inet4Address} of embedded IPv4 client address
       * @throws IllegalArgumentException if the argument does not have a valid embedded IPv4 address
       */
      public static Inet4Address getEmbeddedIPv4ClientAddress(Inet6Address ip) {
        if (isCompatIPv4Address(ip)) {
          return getCompatIPv4Address(ip);
        }
    
        if (is6to4Address(ip)) {
          return get6to4IPv4Address(ip);
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top