P2P Manager: Use send_mlme() instead of send_frame() for Deauthentication
send_frame() is documented to be used for "testing use only" and as such, it should not have used here for a normal production functionality. Replace this with use of send_mlme() which is already used for sending Deauthentication frames in other cases. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
9474654752
commit
b3525dc172
1 changed files with 1 additions and 5 deletions
|
@ -462,9 +462,6 @@ static int p2p_manager_disconnect(struct hostapd_data *hapd, u16 stype,
|
||||||
int ret;
|
int ret;
|
||||||
u8 *pos;
|
u8 *pos;
|
||||||
|
|
||||||
if (!hapd->drv_priv || !hapd->driver->send_frame)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
mgmt = os_zalloc(sizeof(*mgmt) + 100);
|
mgmt = os_zalloc(sizeof(*mgmt) + 100);
|
||||||
if (mgmt == NULL)
|
if (mgmt == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -498,8 +495,7 @@ static int p2p_manager_disconnect(struct hostapd_data *hapd, u16 stype,
|
||||||
pos += 2;
|
pos += 2;
|
||||||
*pos++ = minor_reason_code;
|
*pos++ = minor_reason_code;
|
||||||
|
|
||||||
ret = hapd->driver->send_frame(hapd->drv_priv, (u8 *) mgmt,
|
ret = hostapd_drv_send_mlme(hapd, mgmt, pos - (u8 *) mgmt, 0);
|
||||||
pos - (u8 *) mgmt, 1);
|
|
||||||
os_free(mgmt);
|
os_free(mgmt);
|
||||||
|
|
||||||
return ret < 0 ? -1 : 0;
|
return ret < 0 ? -1 : 0;
|
||||||
|
|
Loading…
Reference in a new issue