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