-
Notifications
You must be signed in to change notification settings - Fork 1
/
C_Result.hpp
80 lines (58 loc) · 1.96 KB
/
C_Result.hpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//////////////////////////////////////////////////////////////////////////////////
// [ Result_Class_Header ]
//////////////////////////////////////////////////////////////////////////////////
//
// RESULT
//
// [::Last modi: 15.03.17 L.ey (µ~)::]
//
//
#ifndef _C_RESULT_H_
#define _C_RESULT_H_
#include <iostream>
using namespace std;
#include <string.h>
#include <arpa/inet.h> // Funktionen wie inet_addr()
#include "C_TreeView.hpp"
#include <sigc++/sigc++.h>
#include <mutex>
typedef unsigned char UCHAR;
typedef unsigned short WORD;
typedef unsigned int DWORD;
//////////////////////////////////////////////////////////////////////////////////
// CONSTANT
//////////////////////////////////////////////////////////////////////////////////
const int C_RESULT_ERROR = 0x00;
const int C_RESULT_READY = 0x01;
//////////////////////////////////////////////////////////////////////////////////
// STRUCT
//////////////////////////////////////////////////////////////////////////////////
struct S_Result{
DWORD pIP;
string psName;
UCHAR pResult[4];
char* pName;
bool bBlock;
};
//////////////////////////////////////////////////////////////////////////////////
// CLASS
//////////////////////////////////////////////////////////////////////////////////
class C_Result : public sigc::trackable {
public:
C_Result(){};
~C_Result(){};
void init(C_TreeView* pTV, Glib::RefPtr<Gtk::ListStore> pLS, Gtk::TreeModel::ColumnRecord* pCR, S_Result* pDnsData){
pTreeView = pTV;
pListStore = pLS;
pColumnRecord = pCR;
pDns_Result = pDnsData;
};
void on_dns_data();
private:
C_TreeView* pTreeView;
Glib::RefPtr<Gtk::ListStore> pListStore;
Gtk::TreeModel::ColumnRecord* pColumnRecord;
S_Result* pDns_Result;
mutable mutex m_Mutex;
};
#endif // _C_RESULT_H_