Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame^] | 1 | ## @file
|
| 2 | # BSD Socket Library, Infrastructure functions.
|
| 3 | #
|
| 4 | # Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
| 5 | #
|
| 6 | # This program and the accompanying materials
|
| 7 | # are licensed and made available under the terms and conditions of the BSD License
|
| 8 | # which accompanies this distribution. The full text of the license may be found at
|
| 9 | # http://opensource.org/licenses/bsd-license.
|
| 10 | #
|
| 11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 13 | #
|
| 14 | #
|
| 15 | ##
|
| 16 |
|
| 17 | [Defines]
|
| 18 | INF_VERSION = 0x00010005
|
| 19 | BASE_NAME = LibNetUtil
|
| 20 | FILE_GUID = f3c9667b-c50c-4e9c-a1f1-78c3b1ddf2c2
|
| 21 | MODULE_TYPE = UEFI_APPLICATION
|
| 22 | VERSION_STRING = 1.0
|
| 23 | LIBRARY_CLASS = LibNetUtil
|
| 24 |
|
| 25 | #
|
| 26 | # VALID_ARCHITECTURES = IA32 X64 IPF
|
| 27 | #
|
| 28 |
|
| 29 | [Sources]
|
| 30 | inet_addr.c #
|
| 31 | inet_makeaddr.c #
|
| 32 | inet_lnaof.c #
|
| 33 | inet_netof.c #
|
| 34 | inet_network.c #
|
| 35 | inet_ntoa.c #
|
| 36 | inet_ntop.c #
|
| 37 |
|
| 38 | [Packages]
|
| 39 | StdLib/StdLib.dec
|
| 40 | StdLibPrivateInternalFiles/DoNotUse.dec
|
| 41 | MdePkg/MdePkg.dec
|
| 42 |
|
| 43 | [LibraryClasses]
|
| 44 | UefiLib
|
| 45 | BaseLib
|
| 46 | BaseMemoryLib
|
| 47 | MemoryAllocationLib
|
| 48 | LibStdLib
|
| 49 | LibStdio
|
| 50 | LibString
|