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
98
99
100
101
102
103
104
105
107
108
109
110
111
112
113
114
115
116
117
124
125
126
128
129
130
131
132
133
134
136
137
138
139
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
162
163
164
165
166
167
168
169
170
171
172
173
175
176
177
178
179
180
181
182
183
184
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_igmp.h"
#ifndef NX_DISABLE_IPV4...
...
UINT _nx_igmp_multicast_interface_join_internal(NX_IP *ip_ptr, ULONG group_address,
UINT interface_index, UINT update_time)
{
UINT i;
UINT first_free;
NX_IP_DRIVER driver_request;
NX_INTERFACE *nx_interface;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_IGMP_MULTICAST_JOIN, ip_ptr, group_address, interface_index, 0, NX_TRACE_IGMP_EVENTS, 0, 0);
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
nx_interface = &ip_ptr -> nx_ip_interface[interface_index];
first_free = NX_MAX_MULTICAST_GROUPS;
for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++)
{
if ((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list == group_address) &&
(ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_interface_list == nx_interface))
{
/* ... */
ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_count++;
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_SUCCESS);
}if ((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list == group_address) && (ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_interface_list == nx_interface)) { ... }
if ((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list == 0) &&
(first_free == NX_MAX_MULTICAST_GROUPS))
{
first_free = i;
}if ((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list == 0) && (first_free == NX_MAX_MULTICAST_GROUPS)) { ... }
}for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++) { ... }
/* ... */
if (first_free == NX_MAX_MULTICAST_GROUPS)
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
/* ... */
return(NX_NO_MORE_ENTRIES);
}if (first_free == NX_MAX_MULTICAST_GROUPS) { ... }
/* ... */
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_MULTICAST_JOIN;
driver_request.nx_ip_driver_physical_address_msw = NX_IP_MULTICAST_UPPER;
driver_request.nx_ip_driver_physical_address_lsw = NX_IP_MULTICAST_LOWER | (group_address & NX_IP_MULTICAST_MASK);
driver_request.nx_ip_driver_interface = nx_interface;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_MULTICAST_JOIN, ip_ptr, 0, 0, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
(nx_interface -> nx_interface_link_driver_entry)(&driver_request);
if (driver_request.nx_ip_driver_status != NX_SUCCESS)
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
/* ... */
return(NX_NO_MORE_ENTRIES);
}if (driver_request.nx_ip_driver_status != NX_SUCCESS) { ... }
ip_ptr -> nx_ipv4_multicast_entry[first_free].nx_ipv4_multicast_join_list = group_address;
ip_ptr -> nx_ipv4_multicast_entry[first_free].nx_ipv4_multicast_join_interface_list = nx_interface;
ip_ptr -> nx_ipv4_multicast_entry[first_free].nx_ipv4_multicast_join_count = 1;
ip_ptr -> nx_ipv4_multicast_entry[first_free].nx_ipv4_multicast_update_time = update_time;
ip_ptr -> nx_ipv4_multicast_entry[first_free].nx_ipv4_multicast_loopback_enable = ip_ptr -> nx_ip_igmp_global_loopback_enable;
#ifndef NX_DISABLE_IGMP_INFO
ip_ptr -> nx_ip_igmp_groups_joined++;/* ... */
#endif
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_SUCCESS);
}{ ... }
#endif/* ... */