1 ## @file 2 # Implementation of EFI HTTP protocol interfaces. 3 # 4 # Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 5 # 6 # This program and the accompanying materials 7 # are licensed and made available under the terms and conditions of the BSD License 8 # which accompanies this distribution. The full text of the license may be found at 9 # http://opensource.org/licenses/bsd-license.php. 10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 # 13 # 14 ## 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = HttpDxe 19 FILE_GUID = 2366c20f-e15a-11e3-8bf1-e4115b28bc50 20 MODULE_TYPE = UEFI_DRIVER 21 VERSION_STRING = 1.0 22 ENTRY_POINT = HttpDxeDriverEntryPoint 23 UNLOAD_IMAGE = NetLibDefaultUnload 24 MODULE_UNI_FILE = HttpDxe.uni 25 26 [Packages] 27 MdePkg/MdePkg.dec 28 MdeModulePkg/MdeModulePkg.dec 29 30 [Sources] 31 ComponentName.h 32 ComponentName.c 33 HttpDns.h 34 HttpDns.c 35 HttpDriver.h 36 HttpDriver.c 37 HttpImpl.h 38 HttpImpl.c 39 HttpProto.h 40 HttpProto.c 41 42 [LibraryClasses] 43 UefiDriverEntryPoint 44 UefiBootServicesTableLib 45 MemoryAllocationLib 46 BaseLib 47 UefiLib 48 DebugLib 49 NetLib 50 HttpLib 51 DpcLib 52 53 [Protocols] 54 gEfiHttpServiceBindingProtocolGuid ## BY_START 55 gEfiHttpProtocolGuid ## BY_START 56 gEfiHttpUtilitiesProtocolGuid ## CONSUMES 57 gEfiTcp4ServiceBindingProtocolGuid ## TO_START 58 gEfiTcp4ProtocolGuid ## TO_START 59 gEfiTcp6ServiceBindingProtocolGuid ## TO_START 60 gEfiTcp6ProtocolGuid ## TO_START 61 gEfiDns4ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES 62 gEfiDns4ProtocolGuid ## SOMETIMES_CONSUMES 63 gEfiDns6ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES 64 gEfiDns6ProtocolGuid ## SOMETIMES_CONSUMES 65 gEfiIp4Config2ProtocolGuid ## SOMETIMES_CONSUMES 66 gEfiIp6ConfigProtocolGuid ## SOMETIMES_CONSUMES 67 68 [UserExtensions.TianoCore."ExtraFiles"] 69 HttpDxeExtra.uni