masscan-mark-ii/src/in-binary.h

17 lines
435 B
C
Raw Normal View History

2024-02-26 08:35:54 -08:00
#ifndef IN_BINARY_H
#define IN_BINARY_H
struct Masscan;
/**
* Read that output of previous scans that were saved in the binary format
* (i.e. using the -oB parameter or the '--output-format binary' parameter).
* The intent is that the user can then re-output in another format like
* JSON or XML.
*/
void
readscan_binary_scanfile(struct Masscan *masscan,
int arg_first, int arg_max, char *argv[]);
#endif