1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-09-26 09:40:44 +02:00
fastnetmon-rewritten/src/pfring_plugin/pfring_collector.h

11 lines
266 B
C++

#ifndef PFRING_PLUGIN_H
#define PFRING_PLUGIN_H
#include "../fastnetmon_types.h"
// This function should be implemented in plugin
void start_pfring_collection(process_packet_pointer func_ptr);
void stop_pfring_collection();
std::string get_pf_ring_stats();
#endif