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
103
104
106
107
108
109
115
116
118
119
120
122
123
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
153
154
155
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_arp.h"
...
...
UINT _nx_arp_enable(NX_IP *ip_ptr, VOID *arp_cache_memory, ULONG arp_cache_size)
{
#ifndef NX_DISABLE_IPV4
ULONG i;
ULONG arp_entries;
NX_ARP *entry_ptr;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_ARP_ENABLE, ip_ptr, arp_cache_memory, arp_cache_size, 0, NX_TRACE_ARP_EVENTS, 0, 0);
memset((void *)arp_cache_memory, 0, arp_cache_size);
entry_ptr = (NX_ARP *)arp_cache_memory;
arp_entries = arp_cache_size / sizeof(NX_ARP);
for (i = 0; i < (arp_entries - 1); i++)
{
entry_ptr -> nx_arp_pool_next = entry_ptr + 1;
entry_ptr++;
}for (i = 0; i < (arp_entries - 1); i++) { ... }
/* ... */
entry_ptr -> nx_arp_pool_next = (NX_ARP *)arp_cache_memory;
for (i = 0; i < (arp_entries - 1); i++)
{
entry_ptr -> nx_arp_pool_previous = entry_ptr - 1;
entry_ptr--;
}for (i = 0; i < (arp_entries - 1); i++) { ... }
/* ... */
entry_ptr -> nx_arp_pool_previous = (entry_ptr + (arp_entries - 1));
/* ... */
/* ... */
ip_ptr -> nx_ip_arp_static_list = NX_NULL;
ip_ptr -> nx_ip_arp_dynamic_list = (NX_ARP *)arp_cache_memory;
ip_ptr -> nx_ip_arp_cache_memory = arp_cache_memory;
ip_ptr -> nx_ip_arp_total_entries = arp_entries;
ip_ptr -> nx_ip_arp_periodic_update = _nx_arp_periodic_update;
ip_ptr -> nx_ip_arp_queue_process = _nx_arp_queue_process;
ip_ptr -> nx_ip_arp_packet_send = _nx_arp_packet_send;
ip_ptr -> nx_ip_arp_allocate = _nx_arp_entry_allocate;
return(NX_SUCCESS);/* ... */
#else
NX_PARAMETER_NOT_USED(ip_ptr);
NX_PARAMETER_NOT_USED(arp_cache_memory);
NX_PARAMETER_NOT_USED(arp_cache_size);
return(NX_NOT_SUPPORTED);/* ... */
#endif
}{ ... }