Changeset 85718 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe
- Timestamp:
- Aug 12, 2020 4:09:12 PM (5 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-133213 /vendor/edk2/current 103735-103757,103769-103776,129194-139864
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe/Udp4Driver.c
r80721 r85718 287 287 then the protocol is added to the existing UEFI handle. 288 288 289 @retval EFI_SUCCES 289 @retval EFI_SUCCESS The protocol was added to ChildHandle. 290 290 @retval EFI_INVALID_PARAMETER ChildHandle is NULL. 291 291 @retval EFI_OUT_OF_RESOURCES There are not enough resources available to create … … 422 422 @param[in] ChildHandle Handle of the child to destroy 423 423 424 @retval EFI_SUCCES 424 @retval EFI_SUCCESS The protocol was removed from ChildHandle. 425 425 @retval EFI_UNSUPPORTED ChildHandle does not support the protocol that is being removed. 426 426 @retval EFI_INVALID_PARAMETER Child handle is NULL. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe/Udp4Driver.h
r80721 r85718 106 106 then the protocol is added to the existing UEFI handle. 107 107 108 @retval EFI_SUCCES 108 @retval EFI_SUCCESS The protocol was added to ChildHandle. 109 109 @retval EFI_INVALID_PARAMETER ChildHandle is NULL. 110 110 @retval EFI_OUT_OF_RESOURCES There are not enough resources available to create … … 130 130 @param[in] ChildHandle Handle of the child to destroy 131 131 132 @retval EFI_SUCCES 132 @retval EFI_SUCCESS The protocol was removed from ChildHandle. 133 133 @retval EFI_UNSUPPORTED ChildHandle does not support the protocol that is being removed. 134 134 @retval EFI_INVALID_PARAMETER Child handle is NULL. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe/Udp4Dxe.inf
r80721 r85718 41 41 [Packages] 42 42 MdePkg/MdePkg.dec 43 MdeModulePkg/MdeModulePkg.dec44 43 NetworkPkg/NetworkPkg.dec 45 44 -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe/Udp4Impl.c
r80721 r85718 120 120 from the received udp datagram. 121 121 122 @retval TRUE The udp datagram matches the receiving requir ments of the122 @retval TRUE The udp datagram matches the receiving requirements of the 123 123 udp Instance. 124 124 @retval FALSE Otherwise. … … 440 440 441 441 /** 442 This function in tializes the new created udp instance.442 This function initializes the new created udp instance. 443 443 444 444 @param[in] Udp4Service Pointer to the UDP4_SERVICE_DATA. … … 852 852 if ((UdpSessionData->DestinationPort == 0) && (ConfigData->RemotePort == 0)) { 853 853 // 854 // Ambiguous, no ava laible DestinationPort for this token.854 // Ambiguous, no available DestinationPort for this token. 855 855 // 856 856 return EFI_INVALID_PARAMETER; … … 865 865 } else if (EFI_IP4_EQUAL (&ConfigData->RemoteAddress, &mZeroIp4Addr)) { 866 866 // 867 // the configured RemoteAddress is all zero, and the user doe ns't override the867 // the configured RemoteAddress is all zero, and the user doesn't override the 868 868 // destination address. 869 869 // … … 923 923 924 924 @param[in] Packet Pointer to the NET_BUF contains the udp datagram. 925 @param[in] HeadSum Checksum of the pseudo header ex ecpt the length925 @param[in] HeadSum Checksum of the pseudo header except the length 926 926 field. 927 927 … … 1265 1265 from the received udp datagram. 1266 1266 1267 @retval TRUE The udp datagram matches the receiving requir ments of the1267 @retval TRUE The udp datagram matches the receiving requirements of the 1268 1268 udp Instance. 1269 1269 @retval FALSE Otherwise. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe/Udp4Impl.h
r80721 r85718 441 441 442 442 /** 443 This function in tializes the new created udp instance.443 This function initializes the new created udp instance. 444 444 445 445 @param[in] Udp4Service Pointer to the UDP4_SERVICE_DATA. … … 575 575 576 576 @param[in] Packet Pointer to the NET_BUF contains the udp datagram. 577 @param[in] HeadSum Checksum of the pseudo header ex ecpt the length577 @param[in] HeadSum Checksum of the pseudo header except the length 578 578 field. 579 579 -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Udp4Dxe/Udp4Main.c
r80721 r85718 368 368 // datagrams from the 0 station address IP instance and then UDP delivers to 369 369 // the matched instance. This copy of multicast IPs is used to avoid receive 370 // the mu tlicast datagrams destined to multicast IPs the other instances configured.370 // the multicast datagrams destined to multicast IPs the other instances configured. 371 371 // 372 372 if (JoinFlag) { … … 845 845 846 846 // 847 // Canc lethe tokens specified by Token for this instance.847 // Cancel the tokens specified by Token for this instance. 848 848 // 849 849 Status = Udp4InstanceCancelToken (Instance, Token);
Note:
See TracChangeset
for help on using the changeset viewer.