aboutsummaryrefslogtreecommitdiff
path: root/networking/ping.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-01-21 03:46:35 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-01-21 03:46:57 +0100
commitf3d705f41bf16183f901e5ddb07c89685e384daf (patch)
tree31fcbd7d4588ecbb64ed18c89f30987d0b6c95fd /networking/ping.c
parentbbc7bee9664b582c8237c4b879bba1bdee4d62a6 (diff)
downloadbusybox-w32-f3d705f41bf16183f901e5ddb07c89685e384daf.tar.gz
busybox-w32-f3d705f41bf16183f901e5ddb07c89685e384daf.tar.bz2
busybox-w32-f3d705f41bf16183f901e5ddb07c89685e384daf.zip
make --help texts smaller
function old new delta packed_usage 31035 30968 -67 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ping.c')
-rw-r--r--networking/ping.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/ping.c b/networking/ping.c
index d0ef7ba62..ef31e000b 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -94,10 +94,10 @@
94//usage: "\n -4,-6 Force IP or IPv6 name resolution" 94//usage: "\n -4,-6 Force IP or IPv6 name resolution"
95//usage: ) 95//usage: )
96//usage: "\n -c CNT Send only CNT pings" 96//usage: "\n -c CNT Send only CNT pings"
97//usage: "\n -s SIZE Send SIZE data bytes in packets (default:56)" 97//usage: "\n -s SIZE Send SIZE data bytes in packets (default 56)"
98//usage: "\n -t TTL Set TTL" 98//usage: "\n -t TTL Set TTL"
99//usage: "\n -I IFACE/IP Use interface or IP address as source" 99//usage: "\n -I IFACE/IP Source interface or IP address"
100//usage: "\n -W SEC Seconds to wait for the first response (default:10)" 100//usage: "\n -W SEC Seconds to wait for the first response (default 10)"
101//usage: "\n (after all -c CNT packets are sent)" 101//usage: "\n (after all -c CNT packets are sent)"
102//usage: "\n -w SEC Seconds until ping exits (default:infinite)" 102//usage: "\n -w SEC Seconds until ping exits (default:infinite)"
103//usage: "\n (can exit earlier with -c CNT)" 103//usage: "\n (can exit earlier with -c CNT)"
@@ -110,8 +110,8 @@
110//usage:# define ping6_full_usage "\n\n" 110//usage:# define ping6_full_usage "\n\n"
111//usage: "Send ICMP ECHO_REQUEST packets to network hosts\n" 111//usage: "Send ICMP ECHO_REQUEST packets to network hosts\n"
112//usage: "\n -c CNT Send only CNT pings" 112//usage: "\n -c CNT Send only CNT pings"
113//usage: "\n -s SIZE Send SIZE data bytes in packets (default:56)" 113//usage: "\n -s SIZE Send SIZE data bytes in packets (default 56)"
114//usage: "\n -I IFACE/IP Use interface or IP address as source" 114//usage: "\n -I IFACE/IP Source interface or IP address"
115//usage: "\n -q Quiet, only display output at start" 115//usage: "\n -q Quiet, only display output at start"
116//usage: "\n and when finished" 116//usage: "\n and when finished"
117//usage: "\n -p Pattern to use for payload" 117//usage: "\n -p Pattern to use for payload"