]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/TcpDxe/TcpDxe.inf
Fix a bug about the iSCSI DHCP dependency issue.
[mirror_edk2.git] / NetworkPkg / TcpDxe / TcpDxe.inf
1 ## @file TcpDxe.inf
2 # Component description file for Tcp module.
3 #
4 # Copyright (c) 2009 - 2011, 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 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 ##
15
16 [Defines]
17 INF_VERSION = 0x00010005
18 BASE_NAME = TcpDxe
19 FILE_GUID = 1A7E4468-2F55-4a56-903C-01265EB7622B
20 MODULE_TYPE = UEFI_DRIVER
21 VERSION_STRING = 1.0
22 ENTRY_POINT = TcpDriverEntryPoint
23 UNLOAD_IMAGE = NetLibDefaultUnload
24
25 #
26 # The following information is for reference only and not required by the build tools.
27 #
28 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
29 #
30
31 [Sources]
32 TcpDriver.c
33 SockImpl.c
34 SockInterface.c
35 TcpDispatcher.c
36 TcpOutput.c
37 TcpMain.c
38 SockImpl.h
39 TcpMisc.c
40 TcpProto.h
41 TcpOption.c
42 TcpInput.c
43 TcpFunc.h
44 TcpOption.h
45 TcpTimer.c
46 TcpMain.h
47 Socket.h
48 ComponentName.c
49 TcpIo.c
50 TcpDriver.h
51
52
53 [Packages]
54 MdePkg/MdePkg.dec
55 MdeModulePkg/MdeModulePkg.dec
56
57
58 [LibraryClasses]
59 BaseLib
60 BaseMemoryLib
61 DevicePathLib
62 DebugLib
63 MemoryAllocationLib
64 UefiLib
65 UefiBootServicesTableLib
66 UefiDriverEntryPoint
67 UefiRuntimeServicesTableLib
68 DpcLib
69 NetLib
70 IpIoLib
71
72
73 [Protocols]
74 gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
75 gEfiIp4ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
76 gEfiIp4ServiceBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
77 gEfiTcp4ProtocolGuid # PROTOCOL SOMETIMES_PRODUCED
78 gEfiTcp4ServiceBindingProtocolGuid # PROTOCOL ALWAYS_PRODUCED
79 gEfiIp6ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
80 gEfiIp6ServiceBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
81 gEfiTcp6ProtocolGuid # PROTOCOL SOMETIMES_PRODUCED
82 gEfiTcp6ServiceBindingProtocolGuid # PROTOCOL ALWAYS_PRODUCED
83