2016-09-15 02:29:22 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2023-01-30 14:41:12 +00:00
|
|
|
#ifndef HC_MONITOR_H
|
|
|
|
#define HC_MONITOR_H
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-31 10:37:06 +00:00
|
|
|
#define STDIN_TIMEOUT_WARN 20 // warn if no input from stdin for x seconds
|
2018-10-17 08:55:47 +00:00
|
|
|
|
2016-10-17 11:44:07 +00:00
|
|
|
int get_runtime_left (const hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2018-09-18 21:37:30 +00:00
|
|
|
HC_API_CALL void *thread_monitor (void *p);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2023-01-30 14:41:12 +00:00
|
|
|
#endif // HC_MONITOR_H
|