diff options
author | Christian Hesse <mail@eworm.de> | 2014-10-31 22:33:13 +0100 |
---|---|---|
committer | Stephen Hemminger <shemming@brocade.com> | 2014-11-02 11:53:29 -0800 |
commit | b68d983754bcf781caa9fac454cff674775a2c35 (patch) | |
tree | 8b94a2835a2974d5dab034525a771608573d0d77 /include/utils.h | |
parent | a0638e18b28e92e7bc62416bd3e6247ed123e0fa (diff) |
ip-link: add switch to show human readable output
Byte and packet count can increase to really big numbers. This adds a
switch to show human readable output.
4: wl: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT group default qlen 1000
link/ether 00:de:ad:be:ee:ef brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
1523846973 3969051 0 0 0 0
TX: bytes packets errors dropped carrier collsns
8710088361 6077735 0 0 0 0
4: wl: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT group default qlen 1000
link/ether 00:de:ad:be:ee:ef brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
1.5G 3.9M 0 0 0 0
TX: bytes packets errors dropped carrier collsns
8.7G 6.0M 0 0 0 0
Diffstat (limited to 'include/utils.h')
-rw-r--r-- | include/utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/utils.h b/include/utils.h index 704dc51f..7bb19e97 100644 --- a/include/utils.h +++ b/include/utils.h @@ -11,6 +11,7 @@ #include "rtm_map.h" extern int preferred_family; +extern int human_readable; extern int show_stats; extern int show_details; extern int show_raw; |