Changeset 105670 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/HttpDxe/HttpsSupport.h
- Timestamp:
- Aug 14, 2024 1:16:30 PM (4 months ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 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-159268 /vendor/edk2/current 103735-103757,103769-103776,129194-164365
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/HttpDxe/HttpsSupport.h
r99404 r105670 3 3 4 4 Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR> 5 Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR> 5 6 SPDX-License-Identifier: BSD-2-Clause-Patent 6 7 … … 31 32 Creates a Tls child handle, open EFI_TLS_PROTOCOL and EFI_TLS_CONFIGURATION_PROTOCOL. 32 33 33 @param[in] ImageHandle The firmware allocated handle for the UEFI image.34 @param[out] TlsSb Pointer to the TLS SERVICE_BINDING_PROTOCOL. 35 @ param[out] TlsProto Pointer to the EFI_TLS_PROTOCOL instance.36 @param[out] TlsConfiguration Pointer to the EFI_TLS_CONFIGURATION_PROTOCOL instance.37 38 @return The child handle with opened EFI_TLS_PROTOCOL and EFI_TLS_CONFIGURATION_PROTOCOL.39 40 **/ 41 EFI_ HANDLE34 @param[in] HttpInstance Pointer to HTTP_PROTOCOL structure. 35 36 @return EFI_SUCCESS TLS child handle is returned in HttpInstance->TlsChildHandle 37 with opened EFI_TLS_PROTOCOL and EFI_TLS_CONFIGURATION_PROTOCOL. 38 EFI_DEVICE_ERROR TLS service binding protocol is not found. 39 Otherwise Fail to create TLS chile handle. 40 41 **/ 42 EFI_STATUS 42 43 EFIAPI 43 44 TlsCreateChild ( 44 IN EFI_HANDLE ImageHandle, 45 OUT EFI_SERVICE_BINDING_PROTOCOL **TlsSb, 46 OUT EFI_TLS_PROTOCOL **TlsProto, 47 OUT EFI_TLS_CONFIGURATION_PROTOCOL **TlsConfiguration 45 IN HTTP_PROTOCOL *HttpInstance 48 46 ); 49 47
Note:
See TracChangeset
for help on using the changeset viewer.