mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
19 lines
333 B
C++
19 lines
333 B
C++
#include "Data.h"
|
|
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
BOOL Started = FALSE;
|
|
BOOL filterLoop = FALSE;
|
|
BOOL filterICMP = TRUE;
|
|
BOOL filterTCP = TRUE;
|
|
BOOL filterUDP = TRUE;
|
|
BOOL dnsHook = FALSE;
|
|
string dnsHost = "";
|
|
USHORT dnsPort = 0;
|
|
USHORT tcpLisn = 0;
|
|
USHORT udpLisn = 0;
|