mirror of
https://github.com/pavel-odintsov/fastnetmon
synced 2024-11-23 13:22:36 +01:00
12 lines
229 B
C++
12 lines
229 B
C++
#ifndef _PCAP_PLUGIN_H
|
|
#define _PCAP_PLUGIN_H
|
|
|
|
#include "../fastnetmon_types.h"
|
|
#include <iostream>
|
|
|
|
void start_pcap_collection(process_packet_pointer func_ptr);
|
|
void stop_pcap_collection();
|
|
std::string get_pcap_stats();
|
|
|
|
#endif
|