|
@@ -43,6 +43,7 @@ static void hostapd_neighbor_clear_entry(struct hostapd_neighbor_entry *nr)
|
|
|
nr->civic = NULL;
|
|
|
os_memset(nr->bssid, 0, sizeof(nr->bssid));
|
|
|
os_memset(&nr->ssid, 0, sizeof(nr->ssid));
|
|
|
+ nr->stationary = 0;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -64,7 +65,7 @@ hostapd_neighbor_add(struct hostapd_data *hapd)
|
|
|
int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
|
|
|
const struct wpa_ssid_value *ssid,
|
|
|
const struct wpabuf *nr, const struct wpabuf *lci,
|
|
|
- const struct wpabuf *civic)
|
|
|
+ const struct wpabuf *civic, int stationary)
|
|
|
{
|
|
|
struct hostapd_neighbor_entry *entry;
|
|
|
|
|
@@ -95,6 +96,8 @@ int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
|
+ entry->stationary = stationary;
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
fail:
|