diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-07 01:24:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-07 01:24:12 +0000 |
commit | fa85b86f388fb037b67fa7fcc3b5502c8d0fa84a (patch) | |
tree | 0d2f47866709f0a555d28166b4aeca04dfb7808c /include/usage.h | |
parent | b05955e0a5aa5c16ef9460cf4bfed1ee589f5f64 (diff) | |
download | busybox-w32-fa85b86f388fb037b67fa7fcc3b5502c8d0fa84a.tar.gz busybox-w32-fa85b86f388fb037b67fa7fcc3b5502c8d0fa84a.tar.bz2 busybox-w32-fa85b86f388fb037b67fa7fcc3b5502c8d0fa84a.zip |
add arp applet - thanks to
"Eric Spakman" <E.Spakman@inter.nl.net>
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index ae03d5431..cfae4e1e1 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -55,6 +55,26 @@ | |||
55 | " -x Extract\n" \ | 55 | " -x Extract\n" \ |
56 | " -v Verbosely list files processed" | 56 | " -v Verbosely list files processed" |
57 | 57 | ||
58 | #define arp_trivial_usage \ | ||
59 | "\n" \ | ||
60 | "[-vn] [-H type] [-i if] -a [hostname]\n" \ | ||
61 | "[-v] [-i if] -d hostname [pub]\n" \ | ||
62 | "[-v] [-H type] [-i if] -s hostname hw_addr [temp]\n" \ | ||
63 | "[-v] [-H type] [-i if] -s hostname hw_addr [netmask nm] pub\n" \ | ||
64 | "[-v] [-H type] [-i if] -Ds hostname ifa [netmask nm] pub\n" | ||
65 | #define arp_full_usage \ | ||
66 | "Manipulate the system ARP cache" \ | ||
67 | "\n\nOptions:" \ | ||
68 | "\n -a Display (all) hosts" \ | ||
69 | "\n -s Set a new ARP entry" \ | ||
70 | "\n -d Delete a specified entry" \ | ||
71 | "\n -v Verbose" \ | ||
72 | "\n -n Don't resolve names" \ | ||
73 | "\n -i if Specify network interface (e.g. eth0)" \ | ||
74 | "\n -D Read <hwaddr> from given device" \ | ||
75 | "\n -A, -p Specify protocol family" \ | ||
76 | "\n -H hwtype Specify hardware address type" | ||
77 | |||
58 | #define arping_trivial_usage \ | 78 | #define arping_trivial_usage \ |
59 | "[-fqbDUA] [-c count] [-w timeout] [-i device] [-s sender] target" | 79 | "[-fqbDUA] [-c count] [-w timeout] [-i device] [-s sender] target" |
60 | #define arping_full_usage \ | 80 | #define arping_full_usage \ |