Changeset 85718 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Include
- Timestamp:
- Aug 12, 2020 4:09:12 PM (5 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 3 added
- 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/Include/Library/HttpLib.h
r80721 r85718 426 426 @param[in] Url The URL of a remote host. 427 427 @param[out] RequestMsg Pointer to the created HTTP request message. 428 NULL if any error occur ed.428 NULL if any error occurred. 429 429 @param[out] RequestMsgSize Size of the RequestMsg (in bytes). 430 430 -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Include/Library/IpIoLib.h
r80721 r85718 404 404 This function is called after IpIoOpen(). The data to be sent is wrapped in 405 405 Pkt. The IP instance wrapped in IpIo is used for sending by default but can be 406 overrid en by Sender. Other sending configs, like source address and gateway406 overridden by Sender. Other sending configs, like source address and gateway 407 407 address etc., are specified in OverrideData. 408 408 … … 509 509 This function pairs with IpIoAddIp(). The IpInfo is previously created by 510 510 IpIoAddIp(). The IP_IO_IP_INFO::RefCnt is decremented and the IP instance 511 will be d stroyed if the RefCnt is zero.511 will be destroyed if the RefCnt is zero. 512 512 513 513 @param[in] IpIo The pointer to the IP_IO instance. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Include/Library/NetLib.h
r80721 r85718 749 749 If it hasn't been removed, then continue with the next node directly. 750 750 This function will end the iterate and return the CallBack's last return value if error happens, 751 or ret run EFI_SUCCESS if 2 complete passes are made with no changes in the number of children in the list.751 or return EFI_SUCCESS if 2 complete passes are made with no changes in the number of children in the list. 752 752 753 753 @param[in] List The head of the list. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Include/Library/TcpIoLib.h
r80721 r85718 201 201 @param[in] Packet The packet to transmit. 202 202 203 @retval EFI_SUCCESS The packet is tra smitted.203 @retval EFI_SUCCESS The packet is transmitted. 204 204 @retval EFI_INVALID_PARAMETER One or more parameters are invalid. 205 205 @retval EFI_UNSUPPORTED One or more of the control options are not … … 222 222 @param[in, out] TcpIo The TcpIo which wraps the socket to be destroyed. 223 223 @param[in] Packet The buffer to hold the data copy from the socket rx buffer. 224 @param[in] AsyncMode Is this receive async ronous or not.224 @param[in] AsyncMode Is this receive asynchronous or not. 225 225 @param[in] Timeout The time to wait for receiving the amount of data the Packet 226 226 can hold. Set to NULL for infinite wait. … … 229 229 @retval EFI_INVALID_PARAMETER One or more parameters are invalid. 230 230 @retval EFI_DEVICE_ERROR An unexpected network or system error occurred. 231 @retval EFI_OUT_OF_RESOURCES Failed to allocate m omery.231 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory. 232 232 @retval EFI_TIMEOUT Failed to receive the required amount of data in the 233 233 specified time period. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Include/Library/UdpIoLib.h
r80721 r85718 44 44 This prototype is used by both receive and sending when calling 45 45 UdpIoRecvDatagram() or UdpIoSendDatagram(). When receiving, Netbuf is allocated by the 46 UDP access point and released by the user. When sending, the user allocates the theNetBuf,46 UDP access point and released by the user. When sending, the user allocates the NetBuf, 47 47 which is then provided to the callback as a reference. 48 48 … … 198 198 @param[in] UdpIo The UDP_IO to cancel packet. 199 199 @param[in] IoStatus The IoStatus to return to the packet owners. 200 @param[in] ToCancel The select fun tion to test whether to cancel this200 @param[in] ToCancel The select function to test whether to cancel this 201 201 packet or not. 202 202 @param[in] Context The opaque parameter to the ToCancel. … … 229 229 @param[in] Configure The function to configure the created UDP child. 230 230 @param[in] UdpVersion The UDP protocol version, UDP4 or UDP6. 231 @param[in] Context The opaque parameter for the Configure fun tion.231 @param[in] Context The opaque parameter for the Configure function. 232 232 233 233 @return The newly-created UDP_IO, or NULL if failed. -
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/Include/Protocol/Dpc.h
r80721 r85718 21 21 22 22 // 23 // Forward reference for pure ANSI compat ability23 // Forward reference for pure ANSI compatibility 24 24 // 25 25 typedef struct _EFI_DPC_PROTOCOL EFI_DPC_PROTOCOL;
Note:
See TracChangeset
for help on using the changeset viewer.