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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
133
134
135
136
137
138
141
142
143
144
145
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_udp.h"
#include "nx_ipv6.h"
#include "nx_ipv4.h"
...
...
UINT _nxd_udp_source_extract(NX_PACKET *packet_ptr, NXD_ADDRESS *ip_address, UINT *port)
{
#ifdef TX_ENABLE_EVENT_TRACE
ULONG ip_address_word3 = 0;
ULONG ip_version;/* ... */
#endif
ULONG *temp_ptr;
temp_ptr = (ULONG *)packet_ptr -> nx_packet_prepend_ptr;
*port = (UINT)(*(temp_ptr - 2) >> NX_SHIFT_BY_16);
ip_address -> nxd_ip_version = packet_ptr -> nx_packet_ip_version;
#ifndef NX_DISABLE_IPV4
if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4)
{
NX_IPV4_HEADER *ipv4_header;
ipv4_header = (NX_IPV4_HEADER *)packet_ptr -> nx_packet_ip_header;
ip_address -> nxd_ip_address.v4 = ipv4_header -> nx_ip_header_source_ip;
#ifdef TX_ENABLE_EVENT_TRACE
ip_version = NX_IP_VERSION_V4;
ip_address_word3 = ip_address -> nxd_ip_address.v4;/* ... */
#endif
}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)
{
NX_IPV6_HEADER *ipv6_header;
ipv6_header = (NX_IPV6_HEADER *)packet_ptr -> nx_packet_ip_header;
COPY_IPV6_ADDRESS(ipv6_header -> nx_ip_header_source_ip,
ip_address -> nxd_ip_address.v6);
#ifdef TX_ENABLE_EVENT_TRACE
ip_version = NX_IP_VERSION_V6;
ip_address_word3 = ip_address -> nxd_ip_address.v6[3];/* ... */
#endif
}if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) { ... }
/* ... */#endif
#ifdef TX_ENABLE_EVENT_TRACE
NX_TRACE_IN_LINE_INSERT(NXD_TRACE_UDP_SOURCE_EXTRACT, packet_ptr, ip_version, ip_address_word3, *port, NX_TRACE_UDP_EVENTS, 0, 0);/* ... */
#endif
return(NX_SUCCESS);
}{ ... }