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
98
99
100
104
105
106
111
112
113
114
115
116
120
121
122
126
127
128
129
133
134
135
136
137
138
139
140
141
142
146
147
148
152
153
154
155
159
160
161
162
163
164
168
169
170
171
172
173
174
175
176
177
178
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ip.h"
#include "nx_ipv6.h"
NX_CALLER_CHECKING_EXTERNS
...
...
UINT _nxde_ip_raw_packet_source_send(NX_IP *ip_ptr, NX_PACKET *packet_ptr,
NXD_ADDRESS *destination_ip, UINT address_index, ULONG protocol, UINT ttl, ULONG tos)
{
UINT status;
if ((ip_ptr == NX_NULL) || (packet_ptr == NX_NULL) || (destination_ip == NX_NULL))
{
return(NX_PTR_ERROR);
}if ((ip_ptr == NX_NULL) || (packet_ptr == NX_NULL) || (destination_ip == NX_NULL)) { ... }
if (!ip_ptr -> nx_ip_raw_ip_processing)
{
return(NX_NOT_ENABLED);
}if (!ip_ptr -> nx_ip_raw_ip_processing) { ... }
if ((destination_ip -> nxd_ip_version != NX_IP_VERSION_V4) &&
(destination_ip -> nxd_ip_version != NX_IP_VERSION_V6))
{
return(NX_IP_ADDRESS_ERROR);
}if ((destination_ip -> nxd_ip_version != NX_IP_VERSION_V4) && (destination_ip -> nxd_ip_version != NX_IP_VERSION_V6)) { ... }
#ifndef NX_DISABLE_IPV4
if (destination_ip -> nxd_ip_version == NX_IP_VERSION_V4)
{
if (destination_ip -> nxd_ip_address.v4 == 0)
{
return(NX_IP_ADDRESS_ERROR);
}if (destination_ip -> nxd_ip_address.v4 == 0) { ... }
if (address_index >= NX_MAX_IP_INTERFACES)
{
return(NX_INVALID_INTERFACE);
}if (address_index >= NX_MAX_IP_INTERFACES) { ... }
if ((packet_ptr -> nx_packet_prepend_ptr - sizeof(NX_IPV4_HEADER)) < packet_ptr -> nx_packet_data_start)
{
return(NX_UNDERFLOW);
}if ((packet_ptr -> nx_packet_prepend_ptr - sizeof(NX_IPV4_HEADER)) < packet_ptr -> nx_packet_data_start) { ... }
}if (destination_ip -> nxd_ip_version == NX_IP_VERSION_V4) { ... }
/* ... */#endif
#ifdef FEATURE_NX_IPV6
if (destination_ip -> nxd_ip_version == NX_IP_VERSION_V6)
{
if (CHECK_UNSPECIFIED_ADDRESS(&destination_ip -> nxd_ip_address.v6[0]))
{
return(NX_IP_ADDRESS_ERROR);
}if (CHECK_UNSPECIFIED_ADDRESS(&destination_ip -> nxd_ip_address.v6[0])) { ... }
if (address_index >= (NX_MAX_IPV6_ADDRESSES + NX_LOOPBACK_IPV6_ENABLED))
{
return(NX_IP_ADDRESS_ERROR);
}if (address_index >= (NX_MAX_IPV6_ADDRESSES + NX_LOOPBACK_IPV6_ENABLED)) { ... }
if ((packet_ptr -> nx_packet_prepend_ptr - sizeof(NX_IPV6_HEADER)) < packet_ptr -> nx_packet_data_start)
{
return(NX_UNDERFLOW);
}if ((packet_ptr -> nx_packet_prepend_ptr - sizeof(NX_IPV6_HEADER)) < packet_ptr -> nx_packet_data_start) { ... }
}if (destination_ip -> nxd_ip_version == NX_IP_VERSION_V6) { ... }
/* ... */#endif
if (packet_ptr -> nx_packet_append_ptr > packet_ptr -> nx_packet_data_end)
{
return(NX_OVERFLOW);
}if (packet_ptr -> nx_packet_append_ptr > packet_ptr -> nx_packet_data_end) { ... }
NX_THREADS_ONLY_CALLER_CHECKING
status = _nxd_ip_raw_packet_source_send(ip_ptr, packet_ptr, destination_ip, address_index, protocol, ttl, tos);
return(status);
}{ ... }