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