mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
55 lines
1.0 KiB
C
55 lines
1.0 KiB
C
#ifndef __HOSTAPD_AP_UCODE_H
|
|
#define __HOSTAPD_AP_UCODE_H
|
|
|
|
#include "utils/ucode.h"
|
|
|
|
struct hostapd_data;
|
|
|
|
struct hostapd_ucode_bss {
|
|
#ifdef UCODE_SUPPORT
|
|
int idx;
|
|
#endif
|
|
};
|
|
|
|
struct hostapd_ucode_iface {
|
|
#ifdef UCODE_SUPPORT
|
|
int idx;
|
|
#endif
|
|
};
|
|
|
|
#ifdef UCODE_SUPPORT
|
|
|
|
int hostapd_ucode_init(struct hapd_interfaces *ifaces);
|
|
|
|
void hostapd_ucode_free(void);
|
|
void hostapd_ucode_free_iface(struct hostapd_iface *iface);
|
|
void hostapd_ucode_add_bss(struct hostapd_data *hapd);
|
|
void hostapd_ucode_free_bss(struct hostapd_data *hapd);
|
|
void hostapd_ucode_reload_bss(struct hostapd_data *hapd);
|
|
|
|
#else
|
|
|
|
static inline int hostapd_ucode_init(struct hapd_interfaces *ifaces)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
static inline void hostapd_ucode_free(void)
|
|
{
|
|
}
|
|
static inline void hostapd_ucode_free_iface(struct hostapd_iface *iface)
|
|
{
|
|
}
|
|
static inline void hostapd_ucode_reload_bss(struct hostapd_data *hapd)
|
|
{
|
|
}
|
|
static inline void hostapd_ucode_add_bss(struct hostapd_data *hapd)
|
|
{
|
|
}
|
|
static inline void hostapd_ucode_free_bss(struct hostapd_data *hapd)
|
|
{
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|