blob: f2d7259c654a9a87eb43eb47b881046d279146b7 (
plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
#ifndef _COMMON_H
#define _COMMON_H
#define _CRT_SECURE_NO_DEPRECATE
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define WINVER 0x0500
#define _WIN32_WINNT 0x0500
#define _WIN32_IE 0x0300
#include <windows.h>
#include <winsock.h>
#include <shellapi.h>
#include <commdlg.h>
#include <commctrl.h>
#include <iphlpapi.h>
#include <Icmpapi.h>
#include <list>
#include <newpluginapi.h>
#include <m_options.h>
#include <m_langpack.h>
#include <m_popup.h>
#include <m_skin.h>
#include <m_netlib.h>
#include <m_database.h>
#include <m_protosvc.h>
#include <m_clui.h>
#include <m_cluiframes.h>
#include <m_fontservice.h>
#include <m_icolib.h>
#include <win2k.h>
#include "resource.h"
#include "collection.h"
#include "Version.h"
#include "icmp.h"
#include "log.h"
#include "menu.h"
#include "pinggraph.h"
#include "pinglist.h"
#include "pingthread.h"
#include "rawping.h"
#include "utils.h"
#define MAX_HISTORY (1440) // 12 hrs at 30 sec intervals
#define PLUG "PING"
#define DEFAULT_PING_PERIOD 30
#define DEFAULT_PING_TIMEOUT 2
#define DEFAULT_SHOW_POPUP true
#define DEFAULT_SHOW_POPUP2 false
#define DEFAULT_BLOCK_REPS true
#define DEFAULT_LOGGING_ENABLED false
#define DEFAULT_LOG_FILENAME "ping_log.txt"
#define DEFAULT_NO_TEST_ICON true
#define DEFAULT_ATTACH_TO_CLIST false
#define MAX_PINGADDRESS_STRING_LENGTH 256
typedef struct {
int ping_period, ping_timeout;
bool show_popup, show_popup2, block_reps, logging;
char log_filename[MAX_PATH];
bool no_test_icon;
int row_height;
int indent;
int retries;
bool attach_to_clist;
bool log_csv;
} PingOptions;
// a deque of pairs - ping time and timestamp
struct HistPair {
short first;
time_t second;
const bool operator==(const HistPair &other) const {return first == other.first && second == other.second;}
};
typedef LinkedList< HistPair > HistoryList;
#define PS_RESPONDING 1
#define PS_NOTRESPONDING 2
#define PS_TESTING 3
#define PS_DISABLED 4
struct PINGADDRESS {
int cbSize; //size in bytes of this structure
DWORD item_id;
char pszName[MAX_PINGADDRESS_STRING_LENGTH]; //IP address or domain name
char pszLabel[MAX_PINGADDRESS_STRING_LENGTH];
bool responding;
int status;
short round_trip_time;
int miss_count;
int port; // -1 for ICMP, non-zero for TCP
char pszProto[MAX_PINGADDRESS_STRING_LENGTH];
char pszCommand[MAX_PATH];
char pszParams[MAX_PATH];
unsigned int get_status; // on success, if status equals this
unsigned int set_status; // set it to this
int index;
const bool operator==(const PINGADDRESS &b) const;
const bool operator<(const PINGADDRESS &b) const;
};
#include "options.h"
typedef Map<DWORD, HistoryList> HistoryMap;
typedef std::list<PINGADDRESS> PINGLIST;
typedef std::list<PINGADDRESS>::iterator pinglist_it;
extern HANDLE hNetlibUser;
extern HINSTANCE hInst;
extern bool use_raw_ping;
// wake event for ping thread
extern HANDLE hWakeEvent;
extern PingOptions options;
extern PINGADDRESS add_edit_addr;
extern HistoryMap history_map;
extern PINGLIST list_items;
extern HANDLE reload_event_handle;
extern CRITICAL_SECTION list_cs;
extern HANDLE mainThread;
extern HANDLE hWakeEvent;
extern CRITICAL_SECTION thread_finished_cs, list_changed_cs, data_list_cs;
extern PINGLIST data_list;
#endif
|