1
10
13
14
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
121
122
123
124
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_icmp.h"
#include "nx_icmpv6.h"
...
...
UINT _nxd_icmp_source_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, UINT address_index,
CHAR *data_ptr, ULONG data_size,
NX_PACKET **response_ptr, ULONG wait_option)
{
UINT status = NX_NOT_SUPPORTED;
#ifndef NX_DISABLE_IPV4
ULONG next_hop_address;
NX_INTERFACE *interface_ptr;/* ... */
#endif
#ifndef NX_DISABLE_IPV4
if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4)
{
interface_ptr = &ip_ptr -> nx_ip_interface[address_index];
_nx_ip_route_find(ip_ptr, ip_address -> nxd_ip_address.v4, &interface_ptr, &next_hop_address);
status = _nx_icmp_interface_ping(ip_ptr, ip_address -> nxd_ip_address.v4, interface_ptr, next_hop_address,
data_ptr, data_size, response_ptr, wait_option);
}if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) { ... }
/* ... */#endif
#ifdef FEATURE_NX_IPV6
if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6)
{
status = _nx_icmp_interface_ping6(ip_ptr, ip_address, data_ptr, data_size,
&ip_ptr -> nx_ipv6_address[address_index], response_ptr, wait_option);
}if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) { ... }
/* ... */#endif
return(status);
}{ ... }