changes related to full scan result and band

Change-Id: I7accbd79f86a616c1d7e11fcebae12dbefaa3612
This commit is contained in:
Vinit Deshapnde 2014-05-13 15:10:49 -07:00
parent 73efd5b991
commit b26e377bb1

View file

@ -39,7 +39,10 @@ typedef struct {
wifi_rssi rssi; // in db
wifi_timespan rtt; // in nanoseconds
wifi_timespan rtt_sd; // standard deviation in rtt
unsigned short beacon_period;
unsigned short capability;
unsigned int ie_length;
char ie_data[1];
// other fields
} wifi_scan_result;
@ -51,8 +54,7 @@ typedef struct {
typedef struct {
void (*on_scan_results_available) (wifi_request_id id, unsigned num_results_available);
void (*on_full_scan_result) (wifi_request_id id, wifi_scan_result result,
unsigned num, wifi_information_element *elements);
void (*on_full_scan_result) (wifi_request_id id, wifi_scan_result *result);
} wifi_scan_result_handler;
typedef struct {