1 #ifndef PCAP_PLUGIN_H
2 #define PCAP_PLUGIN_H
3 
4 #include "../fastnetmon_types.h"
5 #include <iostream>
6 
7 void start_pcap_collection(process_packet_pointer func_ptr);
8 void stop_pcap_collection();
9 std::string get_pcap_stats();
10 
11 #endif
12