Files
nethogs/libnethogs.h
2016-03-03 04:07:26 +08:00

19 lines
286 B
C++

#ifndef NETHOGSMINITOR_H
#define NETHOGSMINITOR_H
class NethogsMonitor
{
NethogsMonitor();
public:
static void start();
static void stop();
private:
static void threadProc();
static void handleUpdate();
static bool _trace;
static bool _promisc;
};
#endif // NETHOGSMINITOR_H