Interface ExitList.Entry

All Superinterfaces:
Serializable
Enclosing interface:
ExitList

public static interface ExitList.Entry extends Serializable
Exit list entry containing results from a single exit scan.
Since:
1.1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Return the IP addresses that were determined in the scan with map keys being IPv4 addresses in dotted-quad format and map values being scan times in milliseconds since the epoch.
    Return the scanned relay's fingerprint, which is a SHA-1 digest of the relays's public identity key, encoded as 40 upper-case hexadecimal characters.
    long
    Return the time in milliseconds since the epoch when the network status that this scan was based on was published.
    long
    Return the time in milliseconds since the epoch when the scanned relay's last known descriptor was published.
  • Method Details

    • getFingerprint

      String getFingerprint()
      Return the scanned relay's fingerprint, which is a SHA-1 digest of the relays's public identity key, encoded as 40 upper-case hexadecimal characters.
      Since:
      1.1.0
    • getPublishedMillis

      long getPublishedMillis()
      Return the time in milliseconds since the epoch when the scanned relay's last known descriptor was published.
      Since:
      1.1.0
    • getLastStatusMillis

      long getLastStatusMillis()
      Return the time in milliseconds since the epoch when the network status that this scan was based on was published.
      Since:
      1.1.0
    • getExitAddresses

      Map<String,Long> getExitAddresses()
      Return the IP addresses that were determined in the scan with map keys being IPv4 addresses in dotted-quad format and map values being scan times in milliseconds since the epoch.
      Since:
      1.1.0