Udp6Dxe.inf 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ## @file Udp6Dxe.inf
  2. # UDP packet service based on IPv6 stack.
  3. #
  4. # This module produces EFI UDPv6 Protocol which provides simple packet-oriented
  5. # services to transmit and receive UDP packets.
  6. #
  7. # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
  8. #
  9. # SPDX-License-Identifier: BSD-2-Clause-Patent
  10. #
  11. ##
  12. [Defines]
  13. INF_VERSION = 0x00010005
  14. BASE_NAME = Udp6Dxe
  15. FILE_GUID = D912C7BC-F098-4367-92BA-E911083C7B0E
  16. MODULE_TYPE = UEFI_DRIVER
  17. VERSION_STRING = 1.0
  18. ENTRY_POINT = Udp6DriverEntryPoint
  19. UNLOAD_IMAGE = NetLibDefaultUnload
  20. MODULE_UNI_FILE = Udp6Dxe.uni
  21. #
  22. # The following information is for reference only and not required by the build tools.
  23. #
  24. # VALID_ARCHITECTURES = IA32 X64 EBC
  25. #
  26. [Sources]
  27. Udp6Driver.h
  28. Udp6Driver.c
  29. Udp6Impl.c
  30. Udp6Impl.h
  31. ComponentName.c
  32. Udp6Main.c
  33. [Packages]
  34. MdePkg/MdePkg.dec
  35. NetworkPkg/NetworkPkg.dec
  36. [LibraryClasses]
  37. BaseLib
  38. BaseMemoryLib
  39. MemoryAllocationLib
  40. UefiBootServicesTableLib
  41. UefiDriverEntryPoint
  42. UefiRuntimeServicesTableLib
  43. UefiLib
  44. DebugLib
  45. IpIoLib
  46. NetLib
  47. DpcLib
  48. [Protocols]
  49. gEfiIp6ProtocolGuid ## TO_START
  50. gEfiIp6ServiceBindingProtocolGuid ## TO_START
  51. gEfiUdp6ServiceBindingProtocolGuid ## BY_START
  52. gEfiUdp6ProtocolGuid ## BY_START
  53. [UserExtensions.TianoCore."ExtraFiles"]
  54. Udp6DxeExtra.uni