1## @file 2# This module produces EFI TCPv4 Protocol and EFI TCPv4 Service Binding Protocol. 3# 4# This module produces EFI TCPv4(Transmission Control Protocol version 4) Protocol 5# upon EFI IPv4 Protocol, to provide basic TCPv4 I/O services. 6# 7# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 8# This program and the accompanying materials 9# are licensed and made available under the terms and conditions of the BSD License 10# which accompanies this distribution. The full text of the license may be found at 11# http://opensource.org/licenses/bsd-license.php 12# 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16# 17## 18 19[Defines] 20 INF_VERSION = 0x00010005 21 BASE_NAME = Tcp4Dxe 22 MODULE_UNI_FILE = Tcp4Dxe.uni 23 FILE_GUID = 6d6963ab-906d-4a65-a7ca-bd40e5d6af4d 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = Tcp4DriverEntryPoint 27 UNLOAD_IMAGE = NetLibDefaultUnload 28# 29# The following information is for reference only and not required by the build tools. 30# 31# VALID_ARCHITECTURES = IA32 X64 IPF EBC 32# 33# DRIVER_BINDING = mTcp4DriverBinding 34# COMPONENT_NAME = gTcp4ComponentName 35# COMPONENT_NAME2 = gTcp4ComponentName2 36# 37 38[Sources] 39 SockImpl.c 40 SockInterface.c 41 Tcp4Proto.h 42 Tcp4Main.h 43 SockImpl.h 44 Tcp4Output.c 45 Tcp4Timer.c 46 Tcp4Option.h 47 Tcp4Dispatcher.c 48 Tcp4Input.c 49 Tcp4Misc.c 50 Tcp4Main.c 51 Socket.h 52 ComponentName.c 53 Tcp4Driver.h 54 Tcp4Io.c 55 Tcp4Driver.c 56 Tcp4Func.h 57 Tcp4Option.c 58 59 60[Packages] 61 MdePkg/MdePkg.dec 62 MdeModulePkg/MdeModulePkg.dec 63 64[LibraryClasses] 65 UefiLib 66 UefiBootServicesTableLib 67 UefiDriverEntryPoint 68 UefiRuntimeServicesTableLib 69 BaseMemoryLib 70 MemoryAllocationLib 71 DebugLib 72 NetLib 73 IpIoLib 74 DevicePathLib 75 DpcLib 76 77[Protocols] 78 gEfiTcp4ServiceBindingProtocolGuid ## BY_START 79 gEfiIp4ServiceBindingProtocolGuid ## TO_START 80 gEfiTcp4ProtocolGuid ## BY_START 81 gEfiIp4ProtocolGuid ## TO_START 82 83[UserExtensions.TianoCore."ExtraFiles"] 84 Tcp4DxeExtra.uni 85