Searched refs:CfgData (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpDispatcher.c419 Configure the Pcb using CfgData.
422 @param[in] CfgData Pointer to the TCP configuration data.
433 IN TCP_CONFIG_DATA *CfgData
443 ASSERT ((CfgData != NULL) && (Sk != NULL) && (Sk->SockHandle != NULL));
456 IpCfgData.Ip4CfgData.TypeOfService = CfgData->Tcp4CfgData.TypeOfService;
457 IpCfgData.Ip4CfgData.TimeToLive = CfgData->Tcp4CfgData.TimeToLive;
458 IpCfgData.Ip4CfgData.UseDefaultAddress = CfgData->Tcp4CfgData.AccessPoint.UseDefaultAddress;
459 IpCfgData.Ip4CfgData.SubnetMask = CfgData->Tcp4CfgData.AccessPoint.SubnetMask;
463 &CfgData->Tcp4CfgData.AccessPoint.StationAddress,
472 IpCfgData.Ip6CfgData.TrafficClass = CfgData
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Dispatcher.c330 Configure the Pcb using CfgData.
333 @param CfgData Pointer to the TCP configuration data.
344 IN EFI_TCP4_CONFIG_DATA *CfgData
353 ASSERT ((CfgData != NULL) && (Sk != NULL) && (Sk->SockHandle != NULL));
365 IpCfgData.UseDefaultAddress = CfgData->AccessPoint.UseDefaultAddress;
366 IpCfgData.StationAddress = CfgData->AccessPoint.StationAddress;
367 IpCfgData.SubnetMask = CfgData->AccessPoint.SubnetMask;
381 if (CfgData->AccessPoint.UseDefaultAddress) {
382 CfgData->AccessPoint.StationAddress = IpCfgData.StationAddress;
383 CfgData
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Dhcp6Dxe/
H A DDhcp6Utility.c248 @param[in, out] CfgData The pointer to the configure data.
253 IN OUT EFI_DHCP6_CONFIG_DATA *CfgData
258 ASSERT (CfgData != NULL);
263 if (CfgData->OptionList != NULL) {
264 for (Index = 0; Index < CfgData->OptionCount; Index++) {
265 if (CfgData->OptionList[Index] != NULL) {
266 FreePool (CfgData->OptionList[Index]);
269 FreePool (CfgData->OptionList);
272 if (CfgData->SolicitRetransmission != NULL) {
273 FreePool (CfgData
[all...]
H A DDhcp6Utility.h55 @param[in, out] CfgData The pointer to the configure data.
60 IN OUT EFI_DHCP6_CONFIG_DATA *CfgData
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcSupport.c575 EFI_UDP6_CONFIG_DATA CfgData; local
578 ZeroMem (&CfgData, sizeof (EFI_UDP6_CONFIG_DATA));
580 CfgData.ReceiveTimeout = PXEBC_DEFAULT_LIFETIME;
581 CfgData.TransmitTimeout = PXEBC_DEFAULT_LIFETIME;
582 CfgData.HopLimit = PXEBC_DEFAULT_HOPLIMIT;
583 CfgData.AllowDuplicatePort = TRUE;
584 CfgData.StationPort = *SrcPort;
586 CopyMem (&CfgData.StationAddress, StationIp, sizeof (EFI_IPv6_ADDRESS));
593 Status = Udp6->Configure (Udp6, &CfgData);
599 Udp6->GetModeData (Udp6, &CfgData, NUL
[all...]

Completed in 1706 milliseconds