mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
datastorage: fix debug message regarding client kick condition
The debug statement mistakenly refers to being "below limit". The client is kicked unless activity exceeds the bandwidth_threshold. Signed-off-by: Nick Hainke <vincent@systemli.org>
This commit is contained in:
parent
daaf08b7e8
commit
21c6530ba3
1 changed files with 1 additions and 1 deletions
|
@ -571,7 +571,7 @@ int kick_clients(struct dawn_mac bssid_mac, uint32_t id) {
|
|||
else
|
||||
{
|
||||
if (have_bandwidth_iwinfo && dawn_metric.bandwidth_threshold != 0)
|
||||
dawnlog_always("Client " MACSTR ": Kicking due to low active data transfer: RX rate %f below %d limit\n", MAC2STR(j->client_addr.u8), rx_rate, dawn_metric.bandwidth_threshold);
|
||||
dawnlog_always("Client " MACSTR ": Kicking due to low active data transfer: RX rate %f is at or below the %d limit\n", MAC2STR(j->client_addr.u8), rx_rate, dawn_metric.bandwidth_threshold);
|
||||
else
|
||||
dawnlog_always("Client " MACSTR ": Kicking as no active transmission data for client, and / or limit of %d is OK.\n",
|
||||
MAC2STR(j->client_addr.u8), dawn_metric.bandwidth_threshold);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue