Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for clientBytes (0.05 seconds)

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

        int port = ~ByteStreams.newDataInput(bytes, 10).readShort() & 0xffff;
    
        byte[] clientBytes = Arrays.copyOfRange(bytes, 12, 16);
        for (int i = 0; i < clientBytes.length; i++) {
          // Teredo obfuscates the mapped client IP, per section 4 of the RFC.
          clientBytes[i] = (byte) ~clientBytes[i];
        }
        Inet4Address client = getInet4Address(clientBytes);
    
        return new TeredoInfo(server, client, port, flags);
      }
    
      /**
    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)
Back to Top