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
94
95
96
97
98
99
100
101
102
103
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
134
135
136
137
138
139
140
148
149
150
151
152
153
154
155
156
157
158
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ipv6.h"
#include "nx_icmpv6.h"
#ifdef NX_IPSEC_ENABLE
#include "nx_ipsec.h"
#endif
#ifdef FEATURE_NX_IPV6
...
#ifndef NX_DISABLE_IPV6_DAD
VOID _nx_icmpv6_perform_DAD(NX_IP *ip_ptr)
{
UINT i;
NXD_IPV6_ADDRESS *nx_ipv6_address_next;
#ifdef NX_ENABLE_IPV6_ADDRESS_CHANGE_NOTIFY
UINT ipv6_addr_index;
#endif
for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++)
{
if (!ip_ptr -> nx_ip_interface[i].nxd_interface_ipv6_address_list_head)
{
continue;
}if (!ip_ptr -> nx_ip_interface[i].nxd_interface_ipv6_address_list_head) { ... }
for (nx_ipv6_address_next = ip_ptr -> nx_ip_interface[i].nxd_interface_ipv6_address_list_head;
nx_ipv6_address_next;
nx_ipv6_address_next = nx_ipv6_address_next -> nxd_ipv6_address_next)
{
if (nx_ipv6_address_next -> nxd_ipv6_address_state == NX_IPV6_ADDR_STATE_TENTATIVE)
{
if (nx_ipv6_address_next -> nxd_ipv6_address_DupAddrDetectTransmit)
{
_nx_icmpv6_send_ns(ip_ptr,
nx_ipv6_address_next -> nxd_ipv6_address,
0, nx_ipv6_address_next, 0, NX_NULL);
nx_ipv6_address_next -> nxd_ipv6_address_DupAddrDetectTransmit--;
}if (nx_ipv6_address_next -> nxd_ipv6_address_DupAddrDetectTransmit) { ... }
else
{
/* ... */
nx_ipv6_address_next -> nxd_ipv6_address_state = NX_IPV6_ADDR_STATE_VALID;
_nx_icmpv6_DAD_clear_NDCache_entry(ip_ptr,
nx_ipv6_address_next -> nxd_ipv6_address);
#ifdef NX_ENABLE_IPV6_ADDRESS_CHANGE_NOTIFY
if (ip_ptr -> nx_ipv6_address_change_notify)
{
ipv6_addr_index = (ULONG)nx_ipv6_address_next -> nxd_ipv6_address_index;
ip_ptr -> nx_ipv6_address_change_notify(ip_ptr, NX_IPV6_ADDRESS_DAD_SUCCESSFUL,
i, ipv6_addr_index, &nx_ipv6_address_next -> nxd_ipv6_address[0]);
}if (ip_ptr -> nx_ipv6_address_change_notify) { ... }
/* ... */#endif
}else { ... }
}if (nx_ipv6_address_next -> nxd_ipv6_address_state == NX_IPV6_ADDR_STATE_TENTATIVE) { ... }
}for (nx_ipv6_address_next = ip_ptr -> nx_ip_interface[i].nxd_interface_ipv6_address_list_head; nx_ipv6_address_next; nx_ipv6_address_next = nx_ipv6_address_next -> nxd_ipv6_address_next) { ... }
}for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++) { ... }
}_nx_icmpv6_perform_DAD (NX_IP *ip_ptr) { ... }
/* ... */
#endif
/* ... */
#endif