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
89
90
91
92
93
94
95
96
97
99
100
101
102
103
104
105
106
107
110
111
112
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ip.h"
#include "nx_igmp.h"
...
...
UINT _nx_igmp_enable(NX_IP *ip_ptr)
{
#ifndef NX_DISABLE_IPV4
NX_TRACE_IN_LINE_INSERT(NX_TRACE_IGMP_ENABLE, ip_ptr, 0, 0, 0, NX_TRACE_IGMP_EVENTS, 0, 0);
#ifndef NX_DISABLE_IGMPV2
ip_ptr -> nx_ip_igmp_router_version = NX_IGMP_HOST_VERSION_2;
/* ... */
#endif
ip_ptr -> nx_ip_igmp_packet_receive = _nx_igmp_packet_receive;
ip_ptr -> nx_ip_igmp_periodic_processing = _nx_igmp_periodic_processing;
/* ... */
ip_ptr -> nx_ip_igmp_queue_process = _nx_igmp_queue_process;
tx_event_flags_set(&(ip_ptr -> nx_ip_events), NX_IP_IGMP_ENABLE_EVENT, TX_OR);
return(NX_SUCCESS);/* ... */
#else
NX_PARAMETER_NOT_USED(ip_ptr);
return(NX_NOT_SUPPORTED);/* ... */
#endif
}{ ... }