]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.h
ShellPkg: Update sources to include MdePkg protocol definitions
[mirror_edk2.git] / ShellPkg / Library / UefiShellNetwork1CommandsLib / UefiShellNetwork1CommandsLib.h
CommitLineData
68fb0527 1/** @file\r
2 header file for NULL named library for network1 shell command functions.\r
3\r
28165f24 4 Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved. <BR>\r
68fb0527 5\r
6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
a1d4bfcc 16#ifndef _UEFI_SHELL_NETWORK1_COMMANDS_LIB_H_\r
68fb0527 17#define _UEFI_SHELL_NETWORK1_COMMANDS_LIB_H_\r
18\r
19#include <Uefi.h>\r
68fb0527 20\r
bca163ff
LG
21#include <Guid/ShellLibHiiGuid.h>\r
22\r
68fb0527 23#include <Protocol/Cpu.h>\r
24#include <Protocol/ServiceBinding.h>\r
25#include <Protocol/Ip6.h>\r
26#include <Protocol/Ip6Config.h>\r
27#include <Protocol/Ip4.h>\r
7c25b7ea 28#include <Protocol/Ip4Config2.h>\r
68fb0527 29#include <Protocol/Arp.h>\r
30\r
31#include <Library/BaseLib.h>\r
32#include <Library/BaseMemoryLib.h>\r
33#include <Library/DebugLib.h>\r
34#include <Library/MemoryAllocationLib.h>\r
35#include <Library/PcdLib.h>\r
36#include <Library/ShellCommandLib.h>\r
37#include <Library/ShellLib.h>\r
38#include <Library/SortLib.h>\r
39#include <Library/UefiLib.h>\r
40#include <Library/UefiRuntimeServicesTableLib.h>\r
41#include <Library/UefiBootServicesTableLib.h>\r
42#include <Library/HiiLib.h>\r
43#include <Library/NetLib.h>\r
44#include <Library/DevicePathLib.h>\r
45#include <Library/PrintLib.h>\r
46\r
68fb0527 47extern EFI_HANDLE gShellNetwork1HiiHandle;\r
48\r
49/**\r
50 Function for 'ping' command.\r
51\r
52 @param[in] ImageHandle Handle to the Image (NULL if Internal).\r
53 @param[in] SystemTable Pointer to the System Table (NULL if Internal).\r
54**/\r
55SHELL_STATUS\r
56EFIAPI\r
57ShellCommandRunPing (\r
58 IN EFI_HANDLE ImageHandle,\r
59 IN EFI_SYSTEM_TABLE *SystemTable\r
60 );\r
61\r
62/**\r
63 Function for 'ifconfig' command.\r
64\r
65 @param[in] ImageHandle Handle to the Image (NULL if Internal).\r
66 @param[in] SystemTable Pointer to the System Table (NULL if Internal).\r
67**/\r
68SHELL_STATUS\r
69EFIAPI\r
70ShellCommandRunIfconfig (\r
71 IN EFI_HANDLE ImageHandle,\r
72 IN EFI_SYSTEM_TABLE *SystemTable\r
73 );\r
74\r
75#endif\r
76\r