From 48a56f1f8a44d0313ac58e7586ff9a48f261a4d5 Mon Sep 17 00:00:00 2001 From: Tomasz Torcz Date: Fri, 23 Dec 2016 20:25:55 +0100 Subject: tools: rename 'bandwidth' to 'transfer' in output 'bandwidth' is a measure of speed, but wg's output shows only the number of bytes transferred. Thus 'transfer' is a better label. --- src/tools/show.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tools/show.c') diff --git a/src/tools/show.c b/src/tools/show.c index 7c32af9..5257d43 100644 --- a/src/tools/show.c +++ b/src/tools/show.c @@ -203,7 +203,7 @@ static char *bytes(uint64_t b) static const char *COMMAND_NAME = NULL; static void show_usage(void) { - fprintf(stderr, "Usage: %s %s { | all | interfaces } [public-key | private-key | preshared-key | listen-port | peers | endpoints | allowed-ips | latest-handshakes | bandwidth | persistent-keepalive]\n", PROG_NAME, COMMAND_NAME); + fprintf(stderr, "Usage: %s %s { | all | interfaces } [public-key | private-key | preshared-key | listen-port | peers | endpoints | allowed-ips | latest-handshakes | transfer | persistent-keepalive]\n", PROG_NAME, COMMAND_NAME); } static void pretty_print(struct wgdevice *device) @@ -239,7 +239,7 @@ static void pretty_print(struct wgdevice *device) if (peer->last_handshake_time.tv_sec) terminal_printf(" " TERMINAL_BOLD "latest handshake" TERMINAL_RESET ": %s\n", ago(&peer->last_handshake_time)); if (peer->rx_bytes || peer->tx_bytes) { - terminal_printf(" " TERMINAL_BOLD "bandwidth" TERMINAL_RESET ": "); + terminal_printf(" " TERMINAL_BOLD "transfer" TERMINAL_RESET ": "); terminal_printf("%s received, ", bytes(peer->rx_bytes)); terminal_printf("%s sent\n", bytes(peer->tx_bytes)); } @@ -298,7 +298,7 @@ static bool ugly_print(struct wgdevice *device, const char *param, bool with_int printf("%s\t", device->interface); printf("%s\t%llu\n", key(peer->public_key), (unsigned long long)peer->last_handshake_time.tv_sec); } - } else if (!strcmp(param, "bandwidth")) { + } else if (!strcmp(param, "transfer")) { for_each_wgpeer(device, peer, i) { if (with_interface) printf("%s\t", device->interface); -- cgit v1.2.3-59-g8ed1b