]> git.proxmox.com Git - mirror_edk2.git/blame - NetworkPkg/TcpDxe/TcpDxe.inf
NetworkPkg: Clean up source files
[mirror_edk2.git] / NetworkPkg / TcpDxe / TcpDxe.inf
CommitLineData
8ef3af39
DG
1## @file\r
2# TCPv4 I/O and TCPv6 I/O services.\r
a3bcde70 3#\r
8ef3af39 4# This module provides EFI TCPv4 Protocol and EFI TCPv6 Protocol to send and receive data stream.\r
f75a7f56 5# It might provide TCPv4 Protocol or TCPv6 Protocol or both of them that depends on\r
8ef3af39
DG
6# which network stack has been loaded in system.\r
7#\r
8#\r
f75a7f56 9# Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>\r
a3bcde70
HT
10#\r
11# This program and the accompanying materials\r
12# are licensed and made available under the terms and conditions of the BSD License\r
13# which accompanies this distribution. The full text of the license may be found at\r
14# http://opensource.org/licenses/bsd-license.php.\r
15#\r
16# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
18#\r
19##\r
20\r
21[Defines]\r
22 INF_VERSION = 0x00010005\r
23 BASE_NAME = TcpDxe\r
24 FILE_GUID = 1A7E4468-2F55-4a56-903C-01265EB7622B\r
25 MODULE_TYPE = UEFI_DRIVER\r
26 VERSION_STRING = 1.0\r
27 ENTRY_POINT = TcpDriverEntryPoint\r
28 UNLOAD_IMAGE = NetLibDefaultUnload\r
8ef3af39 29 MODULE_UNI_FILE = TcpDxe.uni\r
a3bcde70
HT
30\r
31#\r
32# The following information is for reference only and not required by the build tools.\r
33#\r
34# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
35#\r
36\r
37[Sources]\r
38 TcpDriver.c\r
39 SockImpl.c\r
40 SockInterface.c\r
41 TcpDispatcher.c\r
42 TcpOutput.c\r
43 TcpMain.c\r
44 SockImpl.h\r
45 TcpMisc.c\r
46 TcpProto.h\r
47 TcpOption.c\r
48 TcpInput.c\r
49 TcpFunc.h\r
50 TcpOption.h\r
51 TcpTimer.c\r
52 TcpMain.h\r
53 Socket.h\r
54 ComponentName.c\r
55 TcpIo.c\r
56 TcpDriver.h\r
57\r
58\r
59[Packages]\r
60 MdePkg/MdePkg.dec\r
61 MdeModulePkg/MdeModulePkg.dec\r
62\r
63\r
64[LibraryClasses]\r
65 BaseLib\r
66 BaseMemoryLib\r
67 DevicePathLib\r
68 DebugLib\r
69 MemoryAllocationLib\r
70 UefiLib\r
71 UefiBootServicesTableLib\r
72 UefiDriverEntryPoint\r
73 UefiRuntimeServicesTableLib\r
74 DpcLib\r
75 NetLib\r
76 IpIoLib\r
77\r
78\r
79[Protocols]\r
8ef3af39
DG
80 ## SOMETIMES_CONSUMES\r
81 ## SOMETIMES_PRODUCES\r
82 gEfiDevicePathProtocolGuid\r
83 gEfiIp4ProtocolGuid ## TO_START\r
84 gEfiIp4ServiceBindingProtocolGuid ## TO_START\r
85 gEfiTcp4ProtocolGuid ## BY_START\r
86 gEfiTcp4ServiceBindingProtocolGuid ## BY_START\r
87 gEfiIp6ProtocolGuid ## TO_START\r
88 gEfiIp6ServiceBindingProtocolGuid ## TO_START\r
89 gEfiTcp6ProtocolGuid ## BY_START\r
90 gEfiTcp6ServiceBindingProtocolGuid ## BY_START\r
a3bcde70 91\r
8ef3af39
DG
92[UserExtensions.TianoCore."ExtraFiles"]\r
93 TcpDxeExtra.uni\r