hostapd: add missing function declaration
Signed-off-by: David Bauer <mail@david-bauer.net>
This commit is contained in:
parent
cfa670bf16
commit
5ca7793418
1 changed files with 10 additions and 0 deletions
|
@ -61,6 +61,9 @@ void hostapd_ubus_notify_bss_transition_response(
|
||||||
const u8 *candidate_list, u16 candidate_list_len);
|
const u8 *candidate_list, u16 candidate_list_len);
|
||||||
void hostapd_ubus_add(struct hapd_interfaces *interfaces);
|
void hostapd_ubus_add(struct hapd_interfaces *interfaces);
|
||||||
void hostapd_ubus_free(struct hapd_interfaces *interfaces);
|
void hostapd_ubus_free(struct hapd_interfaces *interfaces);
|
||||||
|
int hostapd_ubus_notify_bss_transition_query(
|
||||||
|
struct hostapd_data *hapd, const u8 *addr, u8 dialog_token, u8 reason,
|
||||||
|
const u8 *candidate_list, u16 candidate_list_len);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
@ -125,6 +128,13 @@ static inline void hostapd_ubus_add(struct hapd_interfaces *interfaces)
|
||||||
static inline void hostapd_ubus_free(struct hapd_interfaces *interfaces)
|
static inline void hostapd_ubus_free(struct hapd_interfaces *interfaces)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int hostapd_ubus_notify_bss_transition_query(
|
||||||
|
struct hostapd_data *hapd, const u8 *addr, u8 dialog_token, u8 reason,
|
||||||
|
const u8 *candidate_list, u16 candidate_list_len)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue