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