diff options
author | David Spinadel <david.spinadel@intel.com> | 2016-10-27 12:18:25 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2016-10-29 16:16:47 (GMT) |
commit | 451a27b1ada178543d5822c209c6c154d08613f5 (patch) | |
tree | e5e1ca8bc04850df0a751f160be9e64544e8ba08 /src/ap/hostapd.h | |
parent | 5cb59370d5795ecb4f13a5e3d429a9ba3d7732b2 (diff) | |
download | hostap-451a27b1ada178543d5822c209c6c154d08613f5.zip hostap-451a27b1ada178543d5822c209c6c154d08613f5.tar.gz hostap-451a27b1ada178543d5822c209c6c154d08613f5.tar.bz2 |
hostapd: Add a configuration to set an AP as stationary
Add a configuration option in hostapd.conf and in neighbor report that
sets an AP as stationary. To enable this option on the current AP set
the config option stationary_ap to 1. To set a neighbor entry to be
marked as stationary add the word stat to the SET_NEIGHBOR command. This
option tells hostapd to send LCI data even if it is older than requested
by max age subelement in RRM request.
Signed-off-by: David Spinadel <david.spinadel@intel.com>
Diffstat (limited to 'src/ap/hostapd.h')
-rw-r--r-- | src/ap/hostapd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ap/hostapd.h b/src/ap/hostapd.h index 919b185..fd5aaed 100644 --- a/src/ap/hostapd.h +++ b/src/ap/hostapd.h @@ -109,6 +109,7 @@ struct hostapd_neighbor_entry { struct wpabuf *civic; /* LCI update time */ struct os_time lci_date; + int stationary; }; /** |