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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
153
154
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
176
177
178
179
180
188
189
195
196
198
199
200
201
202
203
204
205
208
214
220
221
222
223
224
225
229
230
231
232
233
234
235
236
237
238
242
248
249
250
251
252
253
257
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
283
284
285
286
287
288
289
290
291
292
293
294
295
296
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_packet.h"
...
...
UINT _nx_packet_data_append(NX_PACKET *packet_ptr, VOID *data_start, ULONG data_size,
NX_PACKET_POOL *pool_ptr, ULONG wait_option)
{
#ifndef NX_DISABLE_PACKET_CHAIN
UINT status;
NX_PACKET *new_list_ptr;
NX_PACKET *last_packet = NX_NULL; /* ... */
#endif
ULONG available_bytes;
ULONG copy_size;
UCHAR *source_ptr;
NX_PACKET *work_ptr;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_PACKET_DATA_APPEND, packet_ptr, data_start, data_size, pool_ptr, NX_TRACE_PACKET_EVENTS, 0, 0);
#ifndef NX_DISABLE_PACKET_CHAIN
if (packet_ptr -> nx_packet_last)
{
/* ... */
available_bytes = 0;
work_ptr = packet_ptr -> nx_packet_last;
do
{
available_bytes = available_bytes +
(ULONG)(work_ptr -> nx_packet_data_end - work_ptr -> nx_packet_append_ptr);
last_packet = work_ptr;
/* ... */
work_ptr = work_ptr -> nx_packet_next;
...} while (work_ptr);
}if (packet_ptr -> nx_packet_last) { ... }
else
#endif
{
available_bytes = (ULONG)(packet_ptr -> nx_packet_data_end - packet_ptr -> nx_packet_append_ptr);
}else { ... }
if (available_bytes < data_size)
{
#ifndef NX_DISABLE_PACKET_CHAIN
new_list_ptr = NX_NULL;
while (available_bytes < data_size)
{
status = _nx_packet_allocate(pool_ptr, &work_ptr, 0, wait_option);
if (status)
{
if (new_list_ptr)
{
_nx_packet_release(new_list_ptr);
}if (new_list_ptr) { ... }
return(status);
}if (status) { ... }
NX_PACKET_DEBUG(__FILE__, __LINE__, work_ptr);
if (new_list_ptr)
{
if (new_list_ptr -> nx_packet_last)
{
/* ... */
(new_list_ptr -> nx_packet_last) -> nx_packet_next = work_ptr;
new_list_ptr -> nx_packet_last = work_ptr;
}if (new_list_ptr -> nx_packet_last) { ... }
else
{
/* ... */
new_list_ptr -> nx_packet_last = work_ptr;
new_list_ptr -> nx_packet_next = work_ptr;
}else { ... }
}if (new_list_ptr) { ... }
else
{
new_list_ptr = work_ptr;
}else { ... }
/* ... */
available_bytes = available_bytes +
(ULONG)(work_ptr -> nx_packet_data_end - work_ptr -> nx_packet_append_ptr);
}while (available_bytes < data_size) { ... }
/* ... */
if (last_packet)
{
last_packet -> nx_packet_next = new_list_ptr;
}if (last_packet) { ... }
else
{
packet_ptr -> nx_packet_next = new_list_ptr;
}else { ... }
new_list_ptr -> nx_packet_last = NX_NULL;/* ... */
#else
NX_PARAMETER_NOT_USED(pool_ptr);
NX_PARAMETER_NOT_USED(wait_option);
return(NX_SIZE_ERROR);/* ... */
#endif
}if (available_bytes < data_size) { ... }
packet_ptr -> nx_packet_length = packet_ptr -> nx_packet_length + data_size;
source_ptr = (UCHAR *)data_start;
#ifndef NX_DISABLE_PACKET_CHAIN
if (packet_ptr -> nx_packet_last)
{
work_ptr = packet_ptr -> nx_packet_last;
}if (packet_ptr -> nx_packet_last) { ... }
else
{
#endif
work_ptr = packet_ptr;
#ifndef NX_DISABLE_PACKET_CHAIN
}else { ... }
while (data_size)
{
if (data_size < (ULONG)(work_ptr -> nx_packet_data_end - work_ptr -> nx_packet_append_ptr))
{
copy_size = data_size;
}if (data_size < (ULONG)(work_ptr -> nx_packet_data_end - work_ptr -> nx_packet_append_ptr)) { ... }
else
{
copy_size = (ULONG)(work_ptr -> nx_packet_data_end - work_ptr -> nx_packet_append_ptr);
}else { ... }
#else
copy_size = data_size;
#endif
memcpy(work_ptr -> nx_packet_append_ptr, source_ptr, copy_size);
data_size = data_size - copy_size;
work_ptr -> nx_packet_append_ptr = work_ptr -> nx_packet_append_ptr + copy_size;
#ifndef NX_DISABLE_PACKET_CHAIN
if (data_size)
{
/* ... */
source_ptr = source_ptr + copy_size;
work_ptr = work_ptr -> nx_packet_next;
packet_ptr -> nx_packet_last = work_ptr;
}if (data_size) { ... }
}/* ... */
while (data_size) { ... }#endif
NX_PACKET_DEBUG(__FILE__, __LINE__, packet_ptr);
return(NX_SUCCESS);
}{ ... }