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