1
10
13
14
20
21
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
68
69
70
71
72
79
80
81
85
86
87
91
92
93
96
97
98
100
101
102
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
255
256
257
258
259
260
261
262
263
264
265
...
...
...
...
...
#ifndef NX_ICMPV4_H
#define NX_ICMPV4_H
#include "nx_api.h"
#ifndef NX_DISABLE_IPV4
#define NX_ICMP_ECHO_REPLY_TYPE 0
#define NX_ICMP_DEST_UNREACHABLE_TYPE 3
/* ... */
#define NX_ICMP_ECHO_REQUEST_TYPE 8
#define NX_ICMP_TIME_EXCEEDED_TYPE 11
#define NX_ICMP_PARAMETER_PROB_TYPE 12
#define NX_ICMP_TIMESTAMP_REQ_TYPE 13
/* ... */
/* ... */
#define NX_ICMP_PROTOCOL_UNREACH_CODE 2
#define NX_ICMP_PORT_UNREACH_CODE 3
/* ... */
/* ... */
#define NX_ICMP_FRT_EXCEEDED_CODE 1
/* ... */
#define NX_ICMP_ZERO_CODE 0
10 defines
/* ... */
typedef struct NX_ICMP_HEADER_STRUCT
{
/* ... */
ULONG nx_icmp_header_word_0;
/* ... */
ULONG nx_icmp_header_word_1;
...} NX_ICMP_HEADER;
#define NX_ICMP_HEADER_SIZE sizeof(NX_ICMP_HEADER)
typedef struct NX_ICMPV4_HEADER_STRUCT
{
UCHAR nx_icmpv4_header_type;
UCHAR nx_icmpv4_header_code;
USHORT nx_icmpv4_header_checksum;
...} NX_ICMPV4_HEADER;
typedef struct NX_ICMPV4_ERROR_STRUCT
{
NX_ICMPV4_HEADER nx_icmpv4_error_header;
ULONG nx_icmpv4_error_pointer;
...} NX_ICMPV4_ERROR;
typedef struct NX_ICMPV4_ECHO_STRUCT
{
NX_ICMPV4_HEADER nx_icmpv4_echo_header;
USHORT nx_icmpv4_echo_identifier;
USHORT nx_icmpv4_echo_sequence_num;
...} NX_ICMPV4_ECHO;
#ifndef NX_DISABLE_ICMPV4_ERROR_MESSAGE
#define NX_ICMPV4_SEND_DEST_UNREACHABLE(ip_ptr, packet, code) \
_nx_icmpv4_send_error_message((ip_ptr), (packet), (ULONG)((NX_ICMP_DEST_UNREACHABLE_TYPE << 24) | ((code) << 16)), 0)...
#define NX_ICMPV4_SEND_TIME_EXCEED(ip_ptr, packet, code) \
_nx_icmpv4_send_error_message((ip_ptr), (packet), (ULONG)((NX_ICMP_TIME_EXCEEDED_TYPE << 24) | ((code) << 16)), 0)...
#define NX_ICMPV4_SEND_PARAMETER_PROBLEM(ip_ptr, packet, code, offset) \
_nx_icmpv4_send_error_message((ip_ptr), (packet), (ULONG)((NX_ICMP_PARAMETER_PROB_TYPE << 24) | ((code) << 16)), (offset))...
/* ... */
#endif
#ifndef NX_DISABLE_ICMPV4_ERROR_MESSAGE
VOID _nx_icmpv4_send_error_message(NX_IP *ip_ptr, NX_PACKET *packet, ULONG word1, ULONG pointer);
#endif
VOID _nx_icmp_packet_process(NX_IP *ip_ptr, NX_PACKET *packet_ptr);
VOID _nx_icmp_queue_process(NX_IP *ip_ptr);
VOID _nx_icmpv4_packet_process(NX_IP *ip_ptr, NX_PACKET *packet_ptr);
VOID _nx_icmpv4_process_echo_reply(NX_IP *ip_ptr, NX_PACKET *packet_ptr);
VOID _nx_icmpv4_process_echo_request(NX_IP *ip_ptr, NX_PACKET *packet_ptr);
UINT _nx_icmp_interface_ping(NX_IP *ip_ptr, ULONG ip_address,
NX_INTERFACE *interface_ptr, ULONG next_hop_address,
CHAR *data_ptr, ULONG data_size,
NX_PACKET **response_ptr, ULONG wait_option);/* ... */
#endif
UINT _nx_icmp_enable(NX_IP *ip_ptr);
UINT _nx_icmp_info_get(NX_IP *ip_ptr, ULONG *pings_sent, ULONG *ping_timeouts,
ULONG *ping_threads_suspended, ULONG *ping_responses_received,
ULONG *icmp_checksum_errors, ULONG *icmp_unhandled_messages);
UINT _nx_icmp_ping(NX_IP *ip_ptr, ULONG ip_address, CHAR *data, ULONG data_size,
NX_PACKET **response_ptr, ULONG wait_option);
/* ... */
UINT _nxe_icmp_enable(NX_IP *ip_ptr);
UINT _nxe_icmp_info_get(NX_IP *ip_ptr, ULONG *pings_sent, ULONG *ping_timeouts,
ULONG *ping_threads_suspended, ULONG *ping_responses_received,
ULONG *icmp_checksum_errors, ULONG *icmp_unhandled_messages);
UINT _nxe_icmp_ping(NX_IP *ip_ptr, ULONG ip_address, CHAR *data, ULONG data_size,
NX_PACKET **response_ptr, ULONG wait_option);
/* ... */
#endif...