1
10
13
14
20
21
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
116
117
118
119
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
157
158
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ip.h"
#include "nx_packet.h"
#include "nx_tcp.h"
#include "tx_thread.h"
5 includes
...
...
VOID _nx_tcp_packet_receive(NX_IP *ip_ptr, NX_PACKET *packet_ptr)
{
TX_INTERRUPT_SAVE_AREA
NX_PACKET_DEBUG(__FILE__, __LINE__, packet_ptr);
#ifndef NX_DISABLE_RX_SIZE_CHECKING
if (packet_ptr -> nx_packet_length < sizeof(NX_TCP_HEADER))
{
#ifndef NX_DISABLE_TCP_INFO
ip_ptr -> nx_ip_tcp_invalid_packets++;/* ... */
#endif
_nx_packet_release(packet_ptr);
return;
}if (packet_ptr -> nx_packet_length < sizeof(NX_TCP_HEADER)) { ... }
/* ... */#endif
if ((TX_THREAD_GET_SYSTEM_STATE()) || (&(ip_ptr -> nx_ip_thread) != _tx_thread_current_ptr))
{
/* ... */
TX_DISABLE
if (ip_ptr -> nx_ip_tcp_queue_head)
{
(ip_ptr -> nx_ip_tcp_queue_tail) -> nx_packet_queue_next = packet_ptr;
ip_ptr -> nx_ip_tcp_queue_tail = packet_ptr;
packet_ptr -> nx_packet_queue_next = NX_NULL;
ip_ptr -> nx_ip_tcp_received_packet_count++;
}if (ip_ptr -> nx_ip_tcp_queue_head) { ... }
else
{
ip_ptr -> nx_ip_tcp_queue_head = packet_ptr;
ip_ptr -> nx_ip_tcp_queue_tail = packet_ptr;
packet_ptr -> nx_packet_queue_next = NX_NULL;
ip_ptr -> nx_ip_tcp_received_packet_count = 1;
}else { ... }
TX_RESTORE
tx_event_flags_set(&(ip_ptr -> nx_ip_events), NX_IP_TCP_EVENT, TX_OR);
}if ((TX_THREAD_GET_SYSTEM_STATE()) || (&(ip_ptr -> nx_ip_thread) != _tx_thread_current_ptr)) { ... }
else
{
/* ... */
_nx_tcp_packet_process(ip_ptr, packet_ptr);
}else { ... }
}{ ... }