From 0b42d7d8a34a99a02becf4dece78481d3cd2b2fc Mon Sep 17 00:00:00 2001 From: Jiaxin Wu Date: Tue, 12 Apr 2016 11:57:54 +0800 Subject: ShellPkg: Update ping command options to sync with Spec MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch is used to update ping command options to sync with shell2.2 Spec. Considering the backward compatible issue, the patch keeps ā€˜-_sā€™ command option unchanged, only add the new option '-s' and make the old option '-_s' function same as new one. Cc: Ye Ting Cc: Fu Siyuan Cc: Jaben Carsey Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiaxin Wu Reviewed-by: Jaben Carsey --- .../Library/UefiShellNetwork1CommandsLib/Ping.c | 12 ++++++++++-- .../UefiShellNetwork1CommandsLib.uni | 22 +++++++++------------- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c b/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c index dbee764..13bcdde 100644 --- a/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c +++ b/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c @@ -2,7 +2,7 @@ The implementation for Ping shell command. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.
- Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.
+ Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -198,6 +198,10 @@ STATIC CONST SHELL_PARAM_ITEM PingParamList[] = { TypeValue }, { + L"-s", + TypeValue + }, + { L"-_s", TypeValue }, @@ -1512,7 +1516,11 @@ ShellCommandRunPing ( // // Parse the paramter of source ip address. // - ValueStr = ShellCommandLineGetValue (ParamPackage, L"-_s"); + ValueStr = ShellCommandLineGetValue (ParamPackage, L"-s"); + if (ValueStr == NULL) { + ValueStr = ShellCommandLineGetValue (ParamPackage, L"-_s"); + } + if (ValueStr != NULL) { mSrcString = ValueStr; if (IpChoice == PING_IP_CHOICE_IP6) { diff --git a/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni b/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni index bc6acac..7d6f2da 100644 --- a/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni +++ b/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni @@ -1,7 +1,7 @@ // /** // // (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.
-// Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.
+// Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.
// This program and the accompanying materials // are licensed and made available under the terms and conditions of the BSD License // which accompanies this distribution. The full text of the license may be found at @@ -88,24 +88,23 @@ #string STR_IFCONFIG_INFO_IP_ADDR_BODY #language en-US "%d.%d.%d.%d\n" #string STR_GET_HELP_PING #language en-US "" -".TH ping 0 "Pings the target host with an IPv4 or IPv6 stack."\r\n" +".TH ping 0 "Ping the target host with an IPv4 stack."\r\n" ".SH NAME\r\n" -"Pings the target host with an IPv4 or IPv6 stack.\r\n" +"Ping the target host with an IPv4 stack.\r\n" ".SH SYNOPSIS\r\n" " \r\n" -"PING [-_ip6] [-_s SourceIp] [-n count] [-l size] TargetIp\r\n" +"PING [-n count] [-l size] [-s SourceIp] TargetIp\r\n" ".SH OPTIONS\r\n" " \r\n" " -n - Specifies the number of echo request datagrams to be sent.\r\n" " -l - Specifies the size of the data buffer in the echo request datagram.\r\n" -" -_ip6 - Specifies the IPv6 stack usage mode (Default is IPv4 stack).\r\n" -" -_s - Specifies the source adapter as IPv4 or IPv6 address.\r\n" -" SourceIp - Specifies the IPv4 or IPv6 address of the source machine.\r\n" -" TargetIp - Specifies the IPv4 or IPv6 address of the target machine.\r\n" +" -s - Specifies the source adapter as IPv4 address.\r\n" +" SourceIp - Specifies the IPv4 address of the source machine.\r\n" +" TargetIp - Specifies the IPv4 address of the target machine.\r\n" ".SH DESCRIPTION\r\n" " \r\n" "NOTES:\r\n" -" 1. This command uses the ICMPv4 or ICMPv6 ECHO_REQUEST datagram to elicit an\r\n" +" 1. This command uses the ICMPv4 ECHO_REQUEST datagram to elicit an\r\n" " ECHO_REPLY from a host.\r\n" ".SH EXAMPLES\r\n" " \r\n" @@ -117,10 +116,7 @@ " fs0:\> ping -n 20 202.120.100.1\r\n" " \r\n" " * To ping the target host by specifying the source adapter as IPv4 address:\r\n" -" fs0:\> ping -_s 202.120.100.12 202.120.100.1\r\n" -" \r\n" -" * To ping the target host by specifying the IPv6 stack usage mode:\r\n" -" fs0:\> ping -_ip6 2000:bbbb::8\r\n" +" fs0:\> ping -s 202.120.100.12 202.120.100.1\r\n" ".SH RETURNVALUES\r\n" " \r\n" "RETURN VALUES:\r\n" -- cgit v1.1