Searched refs:UdpConfigData (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Driver.c123 EFI_UDP4_CONFIG_DATA UdpConfigData; local
125 UdpConfigData.AcceptBroadcast = TRUE;
126 UdpConfigData.AcceptPromiscuous = FALSE;
127 UdpConfigData.AcceptAnyPort = FALSE;
128 UdpConfigData.AllowDuplicatePort = TRUE;
129 UdpConfigData.TypeOfService = 0;
130 UdpConfigData.TimeToLive = 64;
131 UdpConfigData.DoNotFragment = FALSE;
132 UdpConfigData.ReceiveTimeout = 0;
133 UdpConfigData
[all...]
H A DDhcp4Io.c327 EFI_UDP4_CONFIG_DATA UdpConfigData; local
336 UdpConfigData.AcceptBroadcast = FALSE;
337 UdpConfigData.AcceptPromiscuous = FALSE;
338 UdpConfigData.AcceptAnyPort = FALSE;
339 UdpConfigData.AllowDuplicatePort = TRUE;
340 UdpConfigData.TypeOfService = 0;
341 UdpConfigData.TimeToLive = 64;
342 UdpConfigData.DoNotFragment = FALSE;
343 UdpConfigData.ReceiveTimeout = 1;
344 UdpConfigData
[all...]
H A DDhcp4Impl.c1193 EFI_UDP4_CONFIG_DATA UdpConfigData; local
1200 ZeroMem (&UdpConfigData, sizeof (EFI_UDP4_CONFIG_DATA));
1202 UdpConfigData.AcceptBroadcast = TRUE;
1203 UdpConfigData.AllowDuplicatePort = TRUE;
1204 UdpConfigData.TimeToLive = 64;
1205 UdpConfigData.DoNotFragment = TRUE;
1208 CopyMem (&UdpConfigData.StationAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
1211 CopyMem (&UdpConfigData.SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));
1214 UdpConfigData.StationPort = DHCP_CLIENT_PORT;
1216 UdpConfigData
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Udp4Dxe/
H A DUdp4Main.c105 with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
107 With different parameters in UdpConfigData, Configure() can be used to bind
111 @param[in] UdpConfigData Pointer to the buffer to receive the current configuration data.
119 @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
120 and UdpConfigData.StationPort is already used by
132 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
152 if (!Instance->Configured && (UdpConfigData == NULL)) {
161 if (UdpConfigData != NULL) {
163 CopyMem (&StationAddress, &UdpConfigData->StationAddress, sizeof (IP4_ADDR));
164 CopyMem (&SubnetMask, &UdpConfigData
[all...]
H A DUdp4Impl.h162 with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
164 With different parameters in UdpConfigData, Configure() can be used to bind
168 @param[in] UdpConfigData Pointer to the buffer to receive the current configuration data.
176 @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
177 and UdpConfigData.StationPort is already used by
189 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/
H A DUdp6Main.c108 @param[in] UdpConfigData Pointer to the buffer to set the configuration
118 UdpConfigData.StationAddress is not a valid
120 UdpConfigData.RemoteAddress is not a valid unicast
128 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE and
129 UdpConfigData.StationPort is already used by another
141 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
160 if (!Instance->Configured && (UdpConfigData == NULL)) {
170 if (UdpConfigData != NULL) {
172 IP6_COPY_ADDRESS (&StationAddress, &UdpConfigData->StationAddress);
173 IP6_COPY_ADDRESS (&RemoteAddress, &UdpConfigData
[all...]
H A DUdp6Impl.h244 @param[in] UdpConfigData Pointer to the buffer to set the configuration
255 UdpConfigData.StationAddress is not a valid
257 UdpConfigData.RemoteAddress is not a valid unicast
265 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE, and
266 UdpConfigData.StationPort is already used by another
278 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
317 UdpConfigData.RemoteAddress is unspecified.
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DUdp6.h334 This instance can be also reset by calling Configure() with UdpConfigData set to NULL.
338 With different parameters in UdpConfigData, Configure() can be used to bind this instance to specified
342 @param[in] UdpConfigData Pointer to the buffer contained the configuration data.
349 - UdpConfigData.StationAddress neither zero nor one of the configured IP
351 - UdpConfigData.RemoteAddress is not a valid unicast IPv6 address if it
357 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE and UdpConfigData.StationPort
369 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
436 UdpConfigData.RemoteAddress is unspecified.
H A DUdp4.h160 with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
162 With different parameters in UdpConfigData, Configure() can be used to bind
172 @retval EFI_INVALID_PARAMETER UdpConfigData.StationAddress is not a valid unicast IPv4 address.
173 @retval EFI_INVALID_PARAMETER UdpConfigData.SubnetMask is not a valid IPv4 address mask. The subnet
175 @retval EFI_INVALID_PARAMETER UdpConfigData.RemoteAddress is not a valid unicast IPv4 address if it
179 @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
180 and UdpConfigData.StationPort is already used by
192 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL

Completed in 58 milliseconds