diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-01-09 10:06:01 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-01-09 10:06:01 +0000 |
commit | 9e598413750c0decba90222f29104f31b39e5837 (patch) | |
tree | b6eeae83f81b7feb203eb5ce33a8e9c51941e9ca /include/usage.h | |
parent | dd3461af2f227efae7a69a67e5b8dc1f665b57b9 (diff) | |
download | busybox-w32-9e598413750c0decba90222f29104f31b39e5837.tar.gz busybox-w32-9e598413750c0decba90222f29104f31b39e5837.tar.bz2 busybox-w32-9e598413750c0decba90222f29104f31b39e5837.zip |
arping applet by Nick Fedchik
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index dfcc89626..da4fad886 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -38,6 +38,23 @@ | |||
38 | "\t-x\t\textract\n" \ | 38 | "\t-x\t\textract\n" \ |
39 | "\t-v\t\tverbosely list files processed\n" | 39 | "\t-v\t\tverbosely list files processed\n" |
40 | 40 | ||
41 | #define arping_trivial_usage \ | ||
42 | "[-fqbDUA] [-c count] [-w timeout] [-I device] [-s sender] target\n" | ||
43 | #define arping_full_usage \ | ||
44 | "Ping hosts by ARP requests/replies.\n\n" \ | ||
45 | "Options:\n" \ | ||
46 | "\t-f\t\tQuit on first ARP reply\n" \ | ||
47 | "\t-q\t\tBe quiet\n" \ | ||
48 | "\t-b\t\tKeep broadcasting, don't go unicast\n" \ | ||
49 | "\t-D\t\tDuplicated address detection mode\n" \ | ||
50 | "\t-U\t\tUnsolicited ARP mode, update your neighbours\n" \ | ||
51 | "\t-A\t\tARP answer mode, update your neighbours\n" \ | ||
52 | "\t-c count\tStop after sending count ARP request packets\n" \ | ||
53 | "\t-w timeout\tTime to wait for ARP reply, in seconds\n" \ | ||
54 | "\t-I device\tOutgoing interface name, default is eth0\n" \ | ||
55 | "\t-s sender\tSet specific sender IP address\n" \ | ||
56 | "\ttarget\t\tTarget IP address of ARP request\n" | ||
57 | |||
41 | #define awk_trivial_usage \ | 58 | #define awk_trivial_usage \ |
42 | "[-v var=val][-F sep] { -f progname | 'programtext' } [FILE ...]" | 59 | "[-v var=val][-F sep] { -f progname | 'programtext' } [FILE ...]" |
43 | #define awk_full_usage \ | 60 | #define awk_full_usage \ |