Skip to content

Commit

Permalink
Merge branch 'Development'
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenmunilla committed Nov 2, 2017
2 parents 3acc5d9 + b297162 commit fd670b6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
Binary file modified click_binary_file/click_for_AR71xx
Binary file not shown.
18 changes: 18 additions & 0 deletions src/odinagent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2373,6 +2373,23 @@ OdinAgent::read_handler(Element *e, void *user_data)
sa << agent->_tx_power << "\n";
break;
}
case handler_sta_rssi: {
// Disable scanning
agent->_active_AP_scanning = 0;
// Scanning result
for (HashTable<EtherAddress, StationStats>::const_iterator iter = agent->_scanned_station_stats.begin();iter.live(); iter++) {
OdinAgent::StationStats n = iter.value();
if(n._equipment=="STA"){
sa << iter.key().unparse_colon();
double rssi = floor(n._avg_signal*100 + 0.5)/100;
sa << " " << rssi << "\n"; // signal in dBm
}
}

if (agent->_debug_level % 10 > 0)
fprintf(stderr, "[Odinagent.cc] ########### Scanning: Sending AP scanning values \n");
break;
}
}

return sa.take_string();
Expand Down Expand Up @@ -2906,6 +2923,7 @@ OdinAgent::add_handlers()
add_read_handler("scan_APs", read_handler, handler_scan_APs);
add_read_handler("scanning_flags", read_handler, handler_scanning_flags);
add_read_handler("txpower", read_handler, handler_txpower);
add_read_handler("sta_rssi", read_handler, handler_sta_rssi);

add_write_handler("add_vap", write_handler, handler_add_vap);
add_write_handler("set_vap", write_handler, handler_set_vap);
Expand Down
1 change: 1 addition & 0 deletions src/odinagent.hh
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ public:
handler_send_measurement_beacon,
handler_scanning_flags,
handler_txpower,
handler_sta_rssi,
};

// Tx and Rx-stats about stations
Expand Down

0 comments on commit fd670b6

Please sign in to comment.