3 Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #ifndef __EFI_IP4_IGMP_H__
15 #define __EFI_IP4_IGMP_H__
20 #define IGMP_MEMBERSHIP_QUERY 0x11
21 #define IGMP_V1_MEMBERSHIP_REPORT 0x12
22 #define IGMP_V2_MEMBERSHIP_REPORT 0x16
23 #define IGMP_LEAVE_GROUP 0x17
25 #define IGMP_V1ROUTER_PRESENT 400
26 #define IGMP_UNSOLICIATED_REPORT 10
38 /// The status of multicast group. It isn't necessary to maintain
39 /// explicit state of host state diagram. A group with non-zero
40 /// DelayTime is in "delaying member" state. otherwise, it is in
41 /// "idle member" state.
53 /// The IGMP status. Each IP4 service instance has a IGMP_SERVICE_DATA
54 /// attached. The Igmpv1QuerySeen remember whether the server on this
55 /// connected network is v1 or v2.
63 Init the IGMP control data of the IP4 service instance, configure
64 MNP to receive ALL SYSTEM multicast.
66 @param[in, out] IpSb The IP4 service whose IGMP is to be initialized.
68 @retval EFI_SUCCESS IGMP of the IpSb is successfully initialized.
69 @retval EFI_OUT_OF_RESOURCES Failed to allocate resource to initialize IGMP.
70 @retval Others Failed to initialize the IGMP of IpSb.
75 IN OUT IP4_SERVICE
*IpSb
79 Join the multicast group on behalf of this IP4 child
81 @param[in] IpInstance The IP4 child that wants to join the group.
82 @param[in] Address The group to join.
84 @retval EFI_SUCCESS Successfully join the multicast group.
85 @retval EFI_OUT_OF_RESOURCES Failed to allocate resources.
86 @retval Others Failed to join the multicast group.
91 IN IP4_PROTOCOL
*IpInstance
,
96 Leave the IP4 multicast group on behalf of IpInstance.
98 @param[in] IpInstance The IP4 child that wants to leave the group
100 @param[in] Address The group address to leave.
102 @retval EFI_NOT_FOUND The IP4 service instance isn't in the group.
103 @retval EFI_SUCCESS Successfully leave the multicast group.
104 @retval Others Failed to leave the multicast group.
109 IN IP4_PROTOCOL
*IpInstance
,
114 Handle the received IGMP message for the IP4 service instance.
116 @param[in] IpSb The IP4 service instance that received the message.
117 @param[in] Head The IP4 header of the received message.
118 @param[in] Packet The IGMP message, without IP4 header.
120 @retval EFI_INVALID_PARAMETER The IGMP message is malformated.
121 @retval EFI_SUCCESS The IGMP message is successfully processed.
126 IN IP4_SERVICE
*IpSb
,
132 The periodical timer function for IGMP. It does the following
134 1. Decrease the Igmpv1QuerySeen to make it possible to refresh
135 the IGMP server type.
136 2. Decrease the report timer for each IGMP group in "delaying
139 @param[in] IpSb The IP4 service instance that is ticking.
148 Add a group address to the array of group addresses.
149 The caller should make sure that no duplicated address
150 existed in the array. Although the function doesn't
151 assume the byte order of the both Source and Addr, the
152 network byte order is used by the caller.
154 @param[in] Source The array of group addresses to add to.
155 @param[in] Count The number of group addresses in the Source.
156 @param[in] Addr The IP4 multicast address to add.
158 @return NULL if failed to allocate memory for the new groups,
159 otherwise the new combined group addresses.
170 Remove a group address from the array of group addresses.
171 Although the function doesn't assume the byte order of the
172 both Groups and Addr, the network byte order is used by
175 @param Groups The array of group addresses to remove from.
176 @param Count The number of group addresses in the Groups.
177 @param Addr The IP4 multicast address to remove.
179 @return The nubmer of group addresses in the Groups after remove.
180 It is Count if the Addr isn't in the Groups.
185 IN OUT IP4_ADDR
*Groups
,
191 Find the IGMP_GROUP structure which contains the status of multicast
192 group Address in this IGMP control block
194 @param[in] IgmpCtrl The IGMP control block to search from.
195 @param[in] Address The multicast address to search.
197 @return NULL if the multicast address isn't in the IGMP control block. Otherwise
198 the point to the IGMP_GROUP which contains the status of multicast group
204 IN IGMP_SERVICE_DATA
*IgmpCtrl
,