Remove unnecessary ifname parameter from set_beacon()

The new per-BSS driver context makes this unnecessary.
This commit is contained in:
Jouni Malinen 2010-03-06 22:36:40 +02:00
parent 53f3d6f3e6
commit 8b897f5a17
5 changed files with 7 additions and 10 deletions

View file

@ -227,14 +227,14 @@ static int hostapd_set_bss_params(struct hostapd_data *hapd,
}
static int hostapd_set_beacon(const char *ifname, struct hostapd_data *hapd,
static int hostapd_set_beacon(struct hostapd_data *hapd,
const u8 *head, size_t head_len,
const u8 *tail, size_t tail_len, int dtim_period,
int beacon_int)
{
if (hapd->driver == NULL || hapd->driver->set_beacon == NULL)
return 0;
return hapd->driver->set_beacon(ifname, hapd->drv_priv,
return hapd->driver->set_beacon(hapd->drv_priv,
head, head_len, tail, tail_len,
dtim_period, beacon_int);
}

View file

@ -429,8 +429,7 @@ void ieee802_11_set_beacon(struct hostapd_data *hapd)
tail_len = tailpos > tail ? tailpos - tail : 0;
if (hapd->drv.set_beacon(hapd->conf->iface, hapd,
(u8 *) head, head_len,
if (hapd->drv.set_beacon(hapd, (u8 *) head, head_len,
tail, tail_len, hapd->conf->dtim_period,
hapd->iconf->beacon_int))
wpa_printf(MSG_ERROR, "Failed to set beacon head/tail or DTIM "

View file

@ -74,7 +74,7 @@ struct hostapd_driver_ops {
int (*set_radius_acl_expire)(struct hostapd_data *hapd,
const u8 *mac);
int (*set_bss_params)(struct hostapd_data *hapd, int use_protection);
int (*set_beacon)(const char *ifname, struct hostapd_data *hapd,
int (*set_beacon)(struct hostapd_data *hapd,
const u8 *head, size_t head_len,
const u8 *tail, size_t tail_len, int dtim_period,
int beacon_int);