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

Class Attempts

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

hydra attempts status

Source from the content-addressed store, hash-verified

4 * hydra attempts status
5 */
6public class Attempts implements Event {
7 public final long sent;
8 public final long left;
9 public final long elapsed;
10 public final long eta;
11
12 public Attempts(long sent, long left, long elapsed, long eta) {
13 this.sent = sent;
14 this.left = left;
15 this.elapsed = elapsed;
16 this.eta = eta;
17 }
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected