feature: better print output

fix: remove useless mutex for the routine start
This commit is contained in:
0x35c
2025-06-05 10:44:15 +02:00
parent 954f59649a
commit eaf5913c29
6 changed files with 74 additions and 27 deletions

View File

@ -27,6 +27,7 @@ struct option_lst {
struct option_lst *parse_options(int ac, char *const *av);
char *get_option_arg(const struct option_lst *options, e_flag flag);
bool option_isset(const struct option_lst *options, e_flag flag);
e_scantype parse_type(const char *arg);
void free_options(struct option_lst *options);
int parsing(struct scan *general, const struct option_lst *options);
int parsing(struct scan *general, const struct option_lst *options);

View File

@ -3,5 +3,7 @@
#include "parsing.h"
#include "response.h"
void print_host_results(const struct scan *general, double scan_time);
void print_usage(void);
void print_config(const struct scan *general, const char *hosts_path,
uint8_t nb_threads);
void print_host_results(const struct scan *general, double scan_time);