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 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = TcpDxe
|
---|
17 | FILE_GUID = 1A7E4468-2F55-4a56-903C-01265EB7622B
|
---|
18 | MODULE_TYPE = UEFI_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | ENTRY_POINT = TcpDriverEntryPoint
|
---|
21 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
22 | MODULE_UNI_FILE = TcpDxe.uni
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | TcpDriver.c
|
---|
32 | SockImpl.c
|
---|
33 | SockInterface.c
|
---|
34 | TcpDispatcher.c
|
---|
35 | TcpOutput.c
|
---|
36 | TcpMain.c
|
---|
37 | SockImpl.h
|
---|
38 | TcpMisc.c
|
---|
39 | TcpProto.h
|
---|
40 | TcpOption.c
|
---|
41 | TcpInput.c
|
---|
42 | TcpFunc.h
|
---|
43 | TcpOption.h
|
---|
44 | TcpTimer.c
|
---|
45 | TcpMain.h
|
---|
46 | Socket.h
|
---|
47 | ComponentName.c
|
---|
48 | TcpIo.c
|
---|
49 | TcpDriver.h
|
---|
50 |
|
---|
51 |
|
---|
52 | [Packages]
|
---|
53 | MdePkg/MdePkg.dec
|
---|
54 | NetworkPkg/NetworkPkg.dec
|
---|
55 |
|
---|
56 |
|
---|
57 | [LibraryClasses]
|
---|
58 | BaseLib
|
---|
59 | BaseMemoryLib
|
---|
60 | DevicePathLib
|
---|
61 | DebugLib
|
---|
62 | MemoryAllocationLib
|
---|
63 | UefiLib
|
---|
64 | UefiBootServicesTableLib
|
---|
65 | UefiDriverEntryPoint
|
---|
66 | UefiRuntimeServicesTableLib
|
---|
67 | DpcLib
|
---|
68 | NetLib
|
---|
69 | IpIoLib
|
---|
70 |
|
---|
71 |
|
---|
72 | [Protocols]
|
---|
73 | ## SOMETIMES_CONSUMES
|
---|
74 | ## SOMETIMES_PRODUCES
|
---|
75 | gEfiDevicePathProtocolGuid
|
---|
76 | gEfiIp4ProtocolGuid ## TO_START
|
---|
77 | gEfiIp4ServiceBindingProtocolGuid ## TO_START
|
---|
78 | gEfiTcp4ProtocolGuid ## BY_START
|
---|
79 | gEfiTcp4ServiceBindingProtocolGuid ## BY_START
|
---|
80 | gEfiIp6ProtocolGuid ## TO_START
|
---|
81 | gEfiIp6ServiceBindingProtocolGuid ## TO_START
|
---|
82 | gEfiTcp6ProtocolGuid ## BY_START
|
---|
83 | gEfiTcp6ServiceBindingProtocolGuid ## BY_START
|
---|
84 |
|
---|
85 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
86 | TcpDxeExtra.uni
|
---|