diff options
author | Curt Brune | 2015-10-14 12:53:47 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-10-14 12:53:47 +0200 |
commit | 69934701fd1b18327b3a779cb292a728834b2d0d (patch) | |
tree | cdae967517ee981a7e7f07bddfec7047c1f51221 /networking/libiproute/utils.h | |
parent | 7b85ec30b5941f0b90c48a990f2f6840aca87bce (diff) | |
download | busybox-69934701fd1b18327b3a779cb292a728834b2d0d.zip busybox-69934701fd1b18327b3a779cb292a728834b2d0d.tar.gz |
networking: add 'ip neigh' command
This patch ports the 'ip neigh' command, originally written by Alexey
Kuznetsov, <kuznet@ms2.inr.ac.ru>, to busybox.
The base of the port is the version of iproute that shipped with
Debian Squeeze, taken from:
http://http.debian.net/debian/pool/main/i/iproute/iproute_20100519.orig.tar.gz
This patch has actively been used by the Open Network Install
Environment (ONIE) project for over 3 years without incident.
function old new delta
print_neigh - 933 +933
ipneigh_list_or_flush - 742 +742
get_hz - 109 +109
do_ipneigh - 62 +62
do_iproute 2112 2153 +41
packed_usage 30647 30667 +20
ipneigh_main - 14 +14
static.ip_neigh_commands - 12 +12
static.nuds - 9 +9
static.ip_func_ptrs 32 36 +4
print_route 1858 1727 -131
------------------------------------------------------------------------------
(add/remove: 8/0 grow/shrink: 3/1 up/down: 1946/-131) Total: 1815 bytes
Signed-off-by: Curt Brune <curt@cumulusnetworks.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute/utils.h')
-rw-r--r-- | networking/libiproute/utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/libiproute/utils.h b/networking/libiproute/utils.h index 5fb4a86..cd15b70 100644 --- a/networking/libiproute/utils.h +++ b/networking/libiproute/utils.h @@ -85,6 +85,8 @@ int dnet_pton(int af, const char *src, void *addr); const char *ipx_ntop(int af, const void *addr, char *str, size_t len); int ipx_pton(int af, const char *src, void *addr); +unsigned get_hz(void); + POP_SAVED_FUNCTION_VISIBILITY #endif |