projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
1e3d802
)
fix show counters alignment
author
bodea
<bodea>
Wed, 12 Jan 2005 05:21:26 +0000
(
05:21
+0000)
committer
bodea
<bodea>
Wed, 12 Jan 2005 05:21:26 +0000
(
05:21
+0000)
cli.c
patch
|
blob
|
history
diff --git
a/cli.c
b/cli.c
index
a1a561a
..
4feef16
100644
(file)
--- a/
cli.c
+++ b/
cli.c
@@
-2,7
+2,7
@@
// vim: sw=8 ts=8
char const *cvs_name = "$Name: $";
// vim: sw=8 ts=8
char const *cvs_name = "$Name: $";
-char const *cvs_id_cli = "$Id: cli.c,v 1.4
7 2005/01/10 08:00:44
bodea Exp $";
+char const *cvs_id_cli = "$Id: cli.c,v 1.4
8 2005/01/12 05:21:26
bodea Exp $";
#include <stdio.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdarg.h>
@@
-646,24
+646,24
@@
static int cmd_show_counters(struct cli_def *cli, char *command, char **argv, in
if (CLI_HELP_REQUESTED)
return CLI_HELP_NO_ARGS;
if (CLI_HELP_REQUESTED)
return CLI_HELP_NO_ARGS;
- cli_print(cli, "%-10s %10s %
8s %8s %8
s", "Ethernet", "Bytes", "Packets", "Errors", "Dropped");
- cli_print(cli, "%-10s %10u %
8u %8u %8
u", "RX",
+ cli_print(cli, "%-10s %10s %
10s %10s %10
s", "Ethernet", "Bytes", "Packets", "Errors", "Dropped");
+ cli_print(cli, "%-10s %10u %
10u %10u %10
u", "RX",
GET_STAT(tun_rx_bytes),
GET_STAT(tun_rx_packets),
GET_STAT(tun_rx_errors),
GET_STAT(tun_rx_dropped));
GET_STAT(tun_rx_bytes),
GET_STAT(tun_rx_packets),
GET_STAT(tun_rx_errors),
GET_STAT(tun_rx_dropped));
- cli_print(cli, "%-10s %10u %
8u %8
u", "TX",
+ cli_print(cli, "%-10s %10u %
10u %10
u", "TX",
GET_STAT(tun_tx_bytes),
GET_STAT(tun_tx_packets),
GET_STAT(tun_tx_errors));
cli_print(cli, "");
GET_STAT(tun_tx_bytes),
GET_STAT(tun_tx_packets),
GET_STAT(tun_tx_errors));
cli_print(cli, "");
- cli_print(cli, "%-10s %10s %
8s %8s %8
s", "Tunnel", "Bytes", "Packets", "Errors", "Retries");
- cli_print(cli, "%-10s %10u %
8u %8
u", "RX",
+ cli_print(cli, "%-10s %10s %
10s %10s %10
s", "Tunnel", "Bytes", "Packets", "Errors", "Retries");
+ cli_print(cli, "%-10s %10u %
10u %10
u", "RX",
GET_STAT(tunnel_rx_bytes),
GET_STAT(tunnel_rx_packets),
GET_STAT(tunnel_rx_errors));
GET_STAT(tunnel_rx_bytes),
GET_STAT(tunnel_rx_packets),
GET_STAT(tunnel_rx_errors));
- cli_print(cli, "%-10s %10u %
8u %8u %8
u", "TX",
+ cli_print(cli, "%-10s %10u %
10u %10u %10
u", "TX",
GET_STAT(tunnel_tx_bytes),
GET_STAT(tunnel_tx_packets),
GET_STAT(tunnel_tx_errors),
GET_STAT(tunnel_tx_bytes),
GET_STAT(tunnel_tx_packets),
GET_STAT(tunnel_tx_errors),