-
Notifications
You must be signed in to change notification settings - Fork 0
/
probe.h
58 lines (49 loc) · 1.17 KB
/
probe.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef __PROBE_H__
#define __PROBE_H__
#include "sniffer.h"
#include "nic.h"
enum PROBE_STATE
{
BEGIN = 0,
WAIT_MESSAGE,
PROCESS_MESSAGE,
};
class CProbe
{
private:
// 프로그램 상태
PROBE_STATE m_ProbeState;
// NIC Information 리스트
// STL list 사용
CNICList m_NICList;
public:
// NIC Information List 생성
int FindNetDevice();
// capture sender Thread
void StartCaptureSender();
void* CaptureSender();
// Command 함수
// Refresh
// PManager에게 받은 Refresh 명령을 실행 후 응답 반환
void ExcuteCommand(char *cmd);
int Refresh();
void SendNICInfo();
// StartCapture
// PManager에게 받은 StratCapture 명령을 실행 후 응답 반환
void StartCapture(char *cmd);
// EndCapture
// PManager에게 받은 EndCapture 명령을 실행 후 응답 반환
void EndCapture(char *cmd);
// StartProbe
// PManager에게 StartProbe Command 전달
void StartProbe();
// EndProbe
// PManager에게 End Command 전달
void EndProbe();
// 생성자
CProbe();
// 소멸자
~CProbe();
};
extern CProbe pea;
#endif // __PROBE_H__