MCPcopy Index your code
hub / github.com/cSploit/android / HostLost

Class HostLost

cSploit/src/org/csploit/android/events/HostLost.java:8–18  ·  view source on GitHub ↗

an host has been lost

Source from the content-addressed store, hash-verified

6 * an host has been lost
7 */
8public class HostLost implements Event {
9 public final InetAddress ipAddress;
10
11 public HostLost(InetAddress ipAddress) {
12 this.ipAddress = ipAddress;
13 }
14
15 public String toString() {
16 return String.format("HostLost: { ipAddress='%s' }", ipAddress.getHostAddress());
17 }
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected