]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.h
Clean up the private GUID definition in module Level.
[mirror_edk2.git] / ShellPkg / Library / UefiShellNetwork1CommandsLib / UefiShellNetwork1CommandsLib.h
1 /** @file
2 header file for NULL named library for network1 shell command 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.php
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 #ifndef _UEFI_SHELL_NETWORK1_COMMANDS_LIB_H_
17 #define _UEFI_SHELL_NETWORK1_COMMANDS_LIB_H_
18
19 #include <Uefi.h>
20 #include <ShellBase.h>
21
22 #include <Guid/ShellLibHiiGuid.h>
23
24 #include <Protocol/Cpu.h>
25 #include <Protocol/ServiceBinding.h>
26 #include <Protocol/Ip6.h>
27 #include <Protocol/Ip6Config.h>
28 #include <Protocol/Ip4.h>
29 #include <Protocol/Ip4Config.h>
30 #include <Protocol/HiiConfigAccess.h>
31 #include <Protocol/HiiConfigRouting.h>
32 #include <Protocol/Arp.h>
33
34 #include <Library/BaseLib.h>
35 #include <Library/BaseMemoryLib.h>
36 #include <Library/DebugLib.h>
37 #include <Library/MemoryAllocationLib.h>
38 #include <Library/PcdLib.h>
39 #include <Library/ShellCommandLib.h>
40 #include <Library/ShellLib.h>
41 #include <Library/SortLib.h>
42 #include <Library/UefiLib.h>
43 #include <Library/UefiRuntimeServicesTableLib.h>
44 #include <Library/UefiBootServicesTableLib.h>
45 #include <Library/HiiLib.h>
46 #include <Library/NetLib.h>
47 #include <Library/DevicePathLib.h>
48 #include <Library/PrintLib.h>
49
50 #include <Guid/NicIp4ConfigNvData.h>
51
52 extern EFI_HANDLE gShellNetwork1HiiHandle;
53
54 /**
55 Function for 'ping' command.
56
57 @param[in] ImageHandle Handle to the Image (NULL if Internal).
58 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
59 **/
60 SHELL_STATUS
61 EFIAPI
62 ShellCommandRunPing (
63 IN EFI_HANDLE ImageHandle,
64 IN EFI_SYSTEM_TABLE *SystemTable
65 );
66
67 /**
68 Function for 'ifconfig' command.
69
70 @param[in] ImageHandle Handle to the Image (NULL if Internal).
71 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
72 **/
73 SHELL_STATUS
74 EFIAPI
75 ShellCommandRunIfconfig (
76 IN EFI_HANDLE ImageHandle,
77 IN EFI_SYSTEM_TABLE *SystemTable
78 );
79
80 #endif
81