2015-07-07 11:09:21 +02:00
|
|
|
## @file
|
|
|
|
# Implementation of EFI HTTP protocol interfaces.
|
|
|
|
#
|
2018-02-09 04:52:06 +01:00
|
|
|
# Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
|
2015-07-07 11:09:21 +02:00
|
|
|
#
|
|
|
|
# This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php.
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = HttpDxe
|
|
|
|
FILE_GUID = 2366c20f-e15a-11e3-8bf1-e4115b28bc50
|
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = HttpDxeDriverEntryPoint
|
|
|
|
UNLOAD_IMAGE = NetLibDefaultUnload
|
|
|
|
MODULE_UNI_FILE = HttpDxe.uni
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2016-12-14 03:57:41 +01:00
|
|
|
NetworkPkg/NetworkPkg.dec
|
2015-07-07 11:09:21 +02:00
|
|
|
|
|
|
|
[Sources]
|
|
|
|
ComponentName.h
|
|
|
|
ComponentName.c
|
|
|
|
HttpDns.h
|
|
|
|
HttpDns.c
|
|
|
|
HttpDriver.h
|
|
|
|
HttpDriver.c
|
|
|
|
HttpImpl.h
|
|
|
|
HttpImpl.c
|
|
|
|
HttpProto.h
|
|
|
|
HttpProto.c
|
2016-12-14 03:57:41 +01:00
|
|
|
HttpsSupport.h
|
|
|
|
HttpsSupport.c
|
2015-07-07 11:09:21 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiBootServicesTableLib
|
2016-12-14 03:57:41 +01:00
|
|
|
UefiRuntimeServicesTableLib
|
2015-07-07 11:09:21 +02:00
|
|
|
MemoryAllocationLib
|
|
|
|
BaseLib
|
|
|
|
UefiLib
|
|
|
|
DebugLib
|
|
|
|
NetLib
|
|
|
|
HttpLib
|
2015-09-14 11:06:26 +02:00
|
|
|
DpcLib
|
2015-07-07 11:09:21 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiHttpServiceBindingProtocolGuid ## BY_START
|
|
|
|
gEfiHttpProtocolGuid ## BY_START
|
2015-08-26 08:19:53 +02:00
|
|
|
gEfiHttpUtilitiesProtocolGuid ## CONSUMES
|
2015-07-07 11:09:21 +02:00
|
|
|
gEfiTcp4ServiceBindingProtocolGuid ## TO_START
|
|
|
|
gEfiTcp4ProtocolGuid ## TO_START
|
2015-11-09 04:30:42 +01:00
|
|
|
gEfiTcp6ServiceBindingProtocolGuid ## TO_START
|
|
|
|
gEfiTcp6ProtocolGuid ## TO_START
|
2015-07-07 11:09:21 +02:00
|
|
|
gEfiDns4ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiDns4ProtocolGuid ## SOMETIMES_CONSUMES
|
2015-11-09 04:30:42 +01:00
|
|
|
gEfiDns6ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiDns6ProtocolGuid ## SOMETIMES_CONSUMES
|
2015-07-07 11:09:21 +02:00
|
|
|
gEfiIp4Config2ProtocolGuid ## SOMETIMES_CONSUMES
|
2015-11-09 04:30:42 +01:00
|
|
|
gEfiIp6ConfigProtocolGuid ## SOMETIMES_CONSUMES
|
2016-12-14 03:57:41 +01:00
|
|
|
gEfiTlsServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiTlsProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiTlsConfigurationProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
|
|
|
|
[Guids]
|
2017-09-25 13:06:19 +02:00
|
|
|
gEfiTlsCaCertificateGuid ## SOMETIMES_CONSUMES ## Variable:L"TlsCaCertificate"
|
2018-02-09 04:52:06 +01:00
|
|
|
gEdkiiHttpTlsCipherListGuid ## SOMETIMES_CONSUMES ## Variable:L"HttpTlsCipherList"
|
2015-07-07 11:09:21 +02:00
|
|
|
|
2017-01-06 04:53:57 +01:00
|
|
|
[Pcd]
|
|
|
|
gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections ## CONSUMES
|
|
|
|
|
2015-07-07 11:09:21 +02:00
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
HttpDxeExtra.uni
|