hostapd: Add RELOAD_BSS
When using multiple BSSes on a single radio, it is sometimes desirable to reconfigure one BSS, without disconnecting the stations already connected to other BSSes on the same radio. When a BSS is reconfigured using the SET command, there is no "old" configuration we can compare to (so we cannot compare a hash of the configuration for example). One possible solution would be to make the current RELOAD command reload only the current BSS. However, that could break the workflow of existing users. Instead, introduce a new RELOAD_BSS command, which reloads only the current BSS. Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be>
This commit is contained in:
parent
1a27b8838a
commit
af1528a128
4 changed files with 38 additions and 0 deletions
|
@ -672,6 +672,7 @@ void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|||
void hostapd_interface_deinit_free(struct hostapd_iface *iface);
|
||||
int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
|
||||
int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
|
||||
int hostapd_reload_bss_only(struct hostapd_data *bss);
|
||||
int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
|
||||
void hostapd_bss_deinit_no_free(struct hostapd_data *hapd);
|
||||
void hostapd_free_hapd_data(struct hostapd_data *hapd);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue