[PATCH 2/2] Included session transfer stats (rx/tx packets/bytes) into each station's SIGUSR1-dump.
Jan Vales
jan
Tue Jan 1 22:04:16 PST 2013
Signed-hostap: Jan Vales <jan at jvales.net>
---
hostapd/dump_state.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/hostapd/dump_state.c b/hostapd/dump_state.c
index d33e05f..c94d726 100644
--- a/hostapd/dump_state.c
+++ b/hostapd/dump_state.c
@@ -19,6 +19,7 @@
#include "ap/ap_config.h"
#include "ap/sta_info.h"
#include "dump_state.h"
+#include "ap/ap_drv_ops.h"
static void fprint_char(FILE *f, char c)
@@ -72,6 +73,7 @@ static void hostapd_dump_state(struct hostapd_data *hapd)
#ifndef CONFIG_NO_RADIUS
char *buf;
#endif /* CONFIG_NO_RADIUS */
+ struct hostap_sta_driver_data data;
if (!hapd->conf->dump_log_name) {
wpa_printf(MSG_DEBUG, "Dump file not defined - ignoring dump "
@@ -139,6 +141,11 @@ static void hostapd_dump_state(struct hostapd_data *hapd)
"DEAUTH")));
ieee802_1x_dump_state(f, " ", sta);
+
+ if (hostapd_drv_read_sta_data(hapd, &data, sta->addr) == 0) {
+ fprintf(f," rx_pkt=%lu tx_pkt=%lu\n rx_byte=%lu tx_byte=%lu",
+ data.rx_packets, data.tx_packets, data.rx_bytes, data.tx_bytes);
+ }
}
#ifndef CONFIG_NO_RADIUS
--
1.8.0.2
More information about the Hostap
mailing list