wifi_marauder_pcap.h 677 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "furi_hal.h"
  3. /**
  4. * Creates a PCAP file to store incoming packets.
  5. * The file name will have a prefix according to the type of scan being performed by the application (Eg: raw_0.pcap)
  6. *
  7. * @param app Application context
  8. */
  9. void wifi_marauder_create_pcap_file(WifiMarauderApp* app);
  10. /**
  11. * Creates a log file to store text from console output.
  12. * The file name will have a prefix according to the command being performed by the application (Eg: scanap_0.log)
  13. *
  14. * @param app Application context
  15. */
  16. // same as wifi_marauder_create_pcap_file, but for log files (to save console text output)
  17. void wifi_marauder_create_log_file(WifiMarauderApp* app);